Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install . install
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -46,7 +46,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install . install
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -72,7 +72,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -98,7 +98,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
- name: Run tests
run: pytest
Expand All @@ -114,7 +114,7 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
pip install pytest coveralls
- name: Create coverage
Expand All @@ -134,7 +134,7 @@ jobs:
python-version: "3.10"
- name: Install dependencies
run: |
python setup.py install
pip install .
pip install -r requirements-test.txt
pip install pytest pytest-cov
- name: Create coverage
Expand Down