diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a21ce9532..77acd8311 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: | pip install -U pip setuptools wheel - pip install -r ./dev-requirements.txt + pip install -r ./requirements.txt - name: Run pre-commit run: pre-commit install && pre-commit run --all-files @@ -43,7 +43,7 @@ jobs: - name: Install dependencies run: | pip install -U pip setuptools wheel - pip install -r ./dev-requirements.txt + pip install -r ./requirements.txt - name: Run tests run: pytest @@ -64,7 +64,7 @@ jobs: - name: Install dependencies run: | pip install -U pip setuptools wheel - pip install -r ./dev-requirements.txt + pip install -r ./requirements.txt - name: Run tests run: python ./scripts/typecheck_tests.py diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e3a2f727e..95cf49d7d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,7 +43,7 @@ source .venv/bin/activate Then install the dev requirements: ```bash -pip install -r ./dev-requirements.txt +pip install -r ./requirements.txt ``` Finally, install the pre-commit hooks: