We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a64029 commit 4a056a8Copy full SHA for 4a056a8
.github/workflows/pytest.yml
@@ -33,13 +33,10 @@ jobs:
33
uses: actions/setup-python@v2
34
with:
35
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
41
- name: Install dependencies
42
- run: poetry install --no-interaction --no-root
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r tests/dev.requirements.txt
43
- name: Test with pytest
44
env:
45
POSTGRES_DB: test
@@ -48,5 +45,4 @@ jobs:
48
POSTGRES_HOST: localhost
49
46
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
50
47
run: |
51
- source .venv/bin/activate
52
pytest
0 commit comments