Skip to content

Commit 4a056a8

Browse files
committed
⬇️ Revert poetry changes
1 parent 4a64029 commit 4a056a8

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/pytest.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,10 @@ jobs:
3333
uses: actions/setup-python@v2
3434
with:
3535
python-version: ${{ matrix.python-version }}
36-
- name: Install poetry
37-
uses: snok/install-poetry@v1
38-
with:
39-
virtualenvs-create: true
40-
virtualenvs-in-project: true
4136
- name: Install dependencies
42-
run: poetry install --no-interaction --no-root
37+
run: |
38+
python -m pip install --upgrade pip
39+
pip install -r tests/dev.requirements.txt
4340
- name: Test with pytest
4441
env:
4542
POSTGRES_DB: test
@@ -48,5 +45,4 @@ jobs:
4845
POSTGRES_HOST: localhost
4946
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
5047
run: |
51-
source .venv/bin/activate
5248
pytest

0 commit comments

Comments
 (0)