Skip to content

Commit

Permalink
remove redundant pip command
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheider committed Feb 4, 2021
1 parent d962faa commit 53795a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
pip install -r requirements.txt
pip install -r requirements_dev.txt
pip install -r requirements_tests.txt
pip install -r requirements_dev.txt
pip install -r requirements_tests.txt
- name: Lint with flake8
run: |
pip install flake8
Expand All @@ -34,5 +32,4 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pip install pytest
pytest
pytest
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ dist: xenial
language: python
python:
- '3.6'
# - '3.7'
- '3.7'
# - '3.8'
install:
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
- pip install -r requirements_tests.txt
- pip install -e .
script:
- pytest --cov=draugr
Expand Down

0 comments on commit 53795a9

Please sign in to comment.