We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b6b212 commit 883a584Copy full SHA for 883a584
.github/workflows/pytest.yml
@@ -11,25 +11,17 @@ jobs:
11
- name: Checkout
12
uses: actions/checkout@v3
13
14
- - name: Install Poetry
15
- run: |
16
- pipx install poetry
17
-
18
- name: Setup Python
19
- id: setup_py
20
uses: actions/setup-python@v4
21
with:
22
python-version: "3.10"
23
- cache: poetry
+ cache: pip
24
25
- - name: Poetry install
26
27
- poetry lock --check # check that lockfile is up to date
28
- poetry install --with test --extras annlibs
+ - name: Install project and dependencies
+ run: pip install .[annlibs,tests]
29
30
- name: Run test suite
31
32
- poetry run pytest -v --color=yes
+ run: pytest -v --color=yes
33
34
check: # TODO: replace with pre-commit.ci
35
runs-on: ubuntu-latest
0 commit comments