Skip to content

Commit

Permalink
handle multi-package install with requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Nov 13, 2020
1 parent e4c4c45 commit a4e8dcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ jobs:
architecture: 'x64'
- name: Install the Python dependencies
run: |
cd pytest_plugin
pip install -e .
cd ..
pip install -e .[test] --ignore-installed
pip install -r requirements.txt
- name: Run the tests
run: |
pytest
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-e ./pytest_plugin
-e .[test]

0 comments on commit a4e8dcf

Please sign in to comment.