Skip to content

Commit

Permalink
Install Poetry as a modern way to manage dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tommorris committed Jan 25, 2022
1 parent 6e9a11a commit 779c66d
Show file tree
Hide file tree
Showing 4 changed files with 380 additions and 10 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.11
- name: Install dependencies
run: |
pip install -r requirements.txt --user
poetry install
- name: Run tests with Nose
run: python -m nose --exclude=test_suite
run: poetry run python -m nose --exclude=test_suite
Loading

0 comments on commit 779c66d

Please sign in to comment.