Skip to content

Commit

Permalink
tested if refactoring where pytest is makes uv install it correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Apr 28, 2024
1 parent baee4d8 commit 1ab6bb9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/data-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
uv venv
uv pip install -r data/requirements.txt
uv pip install -r data/requirements.txt -r requirements-dev.txt
- run: pytest data
#type-check:
# runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install python dependencies
run: |
uv venv
uv pip install -r data/requirements.txt -r requirements-dev.txt -r server/main-api/test/requirements.txt
uv pip install -r data/requirements.txt -r requirements-dev.txt
- name: Run pre-commit
continue-on-error: ${{ github.ref == 'refs/heads/main' }}
uses: pre-commit/[email protected]
Expand Down
1 change: 0 additions & 1 deletion data/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ lxml~=5.2.0
numba~=0.59.0rc1
Pillow~=10.3.0
pydantic~=2.7.0
pytest~=8.2.0
pyyaml~=6.0
requests~=2.31.0
ruamel.yaml~=0.18.5
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pytest~=8.2.0
mypy~=1.10.0
pre-commit~=3.7.0
ruff~=0.4.0
Expand Down

0 comments on commit 1ab6bb9

Please sign in to comment.