Skip to content

Commit

Permalink
fix: Fix CI failing to find Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jag1g13 committed Aug 30, 2020
1 parent 637583f commit 4b8e375
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --extras test
pip install poetry flake8 prospector pytest
poetry install --no-root --extras all
- name: Lint with flake8 and prospector
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ flake8 = "^3.8.3"

[tool.poetry.extras]
mdtraj = ["mdtraj"]
test = ["mdtraj", "pytest", "prospector", "flake8"]
all = ["mdtraj"]

[build-system]
requires = ["poetry>=0.12"]
Expand Down

0 comments on commit 4b8e375

Please sign in to comment.