Skip to content

Commit

Permalink
chore: more code simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 6, 2024
1 parent 8500729 commit 463197b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
if: matrix.python-version == '3.12'
- run: |
pip install pytest
ADAPTER=${{ matrix.adapter }} MONGOHQ_URL=mongodb://127.0.0.1:27017 HTTPBIN=httpbin.bemisc.com pytest
- run: ADAPTER=${{ matrix.adapter }} MONGOHQ_URL=mongodb://127.0.0.1:27017 HTTPBIN=httpbin.bemisc.com python setup.py test
ADAPTER=${{ matrix.adapter }} HTTPBIN=httpbin.bemisc.com pytest
- run: ADAPTER=${{ matrix.adapter }} HTTPBIN=httpbin.bemisc.com python setup.py test
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'
build-pypy:
name: Build PyPy
Expand Down Expand Up @@ -87,6 +87,6 @@ jobs:
if: matrix.python-version == '3.12'
- run: |
pip install pytest
ADAPTER=${{ matrix.adapter }} MONGOHQ_URL=mongodb://127.0.0.1:27017 HTTPBIN=httpbin.bemisc.com pytest
- run: ADAPTER=${{ matrix.adapter }} MONGOHQ_URL=mongodb://127.0.0.1:27017 HTTPBIN=httpbin.bemisc.com pypy setup.py test
ADAPTER=${{ matrix.adapter }} HTTPBIN=httpbin.bemisc.com pytest
- run: ADAPTER=${{ matrix.adapter }} HTTPBIN=httpbin.bemisc.com pypy setup.py test
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'

0 comments on commit 463197b

Please sign in to comment.