Skip to content

Commit

Permalink
update!
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekrubin committed Jan 25, 2024
1 parent 6f9e9f5 commit c968df4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: |
set -e
pip install ry --find-links dist --force-reinstall
pip install pytest
pip install -r requirements.dev.txt
pytest
linux:
Expand Down Expand Up @@ -75,6 +75,7 @@ jobs:
run: |
set -e
pip install ry --find-links dist --force-reinstall
pip install -r requirements.dev.txt
pip install pytest
pytest
- name: pytest
Expand All @@ -87,7 +88,7 @@ jobs:
install: |
apt-get update
apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip pytest
pip3 install -U pip pytest pytest-asyncio pytest-benchmark
run: |
set -e
pip3 install ry --find-links dist --force-reinstall
Expand Down Expand Up @@ -126,7 +127,7 @@ jobs:
run: |
set -e
pip install ry --find-links dist --force-reinstall
pip install pytest
pip install -r requirements.dev.txt
pytest
macos:
Expand Down Expand Up @@ -162,6 +163,7 @@ jobs:
run: |
set -e
pip install ry --find-links dist --force-reinstall
pip install -r requirements.dev.txt
pip install pytest
pytest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ jobs:
run: |
set -e
pip install ry --find-links dist --force-reinstall
pip install -r requirements.dev.txt
pip install pytest
pytest
1 change: 1 addition & 0 deletions requirements.dev.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pytest
pytest-asyncio
pytest-benchmark
tomli
2 changes: 2 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ pytest-asyncio==0.23.3
# via -r requirements.dev.in
pytest-benchmark==4.0.0
# via -r requirements.dev.in
tomli==2.0.1
# via -r requirements.dev.in

0 comments on commit c968df4

Please sign in to comment.