Skip to content

Commit a452a2d

Browse files
committed
edited the setup.py
1 parent ae31d32 commit a452a2d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pytests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
17+
python-version: [3.6, 3.7, 3.8, 3.9]
1818

1919
steps:
2020
# Checkout the latest code from the repo
@@ -31,11 +31,11 @@ jobs:
3131
# Install the package using the setup.py
3232
- name: Install package
3333
run: pip install -e .
34-
# Install pytest (you can use some other testing utility)
34+
# Install coverage (you can use some other testing utility)
3535
- name: Install coverage
3636
run: |
3737
python -m pip install --upgrade pip
3838
pip install coverage
39-
# Run the tests. I'm using pytest and the file is in the tests directory.
39+
# Run the tests. I'm using unittest and coverage and the file is in the tests directory.
4040
- name: Run tests
4141
run: coverage run -m unittest thepeer/tests/thepeer_test.py

0 commit comments

Comments
 (0)