diff --git a/.github/workflows/data-cicd.yml b/.github/workflows/data-cicd.yml index 013bb2b33..0e59ac188 100644 --- a/.github/workflows/data-cicd.yml +++ b/.github/workflows/data-cicd.yml @@ -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 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 82a5beeda..061b8daba 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -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/action@v3.0.1 diff --git a/data/requirements.txt b/data/requirements.txt index e553ab6b3..2218e4293 100644 --- a/data/requirements.txt +++ b/data/requirements.txt @@ -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 diff --git a/requirements-dev.txt b/requirements-dev.txt index 225dd1067..2d22ff8f2 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,4 @@ +pytest~=8.2.0 mypy~=1.10.0 pre-commit~=3.7.0 ruff~=0.4.0