From 466b1f5f0dd2f80eea6fcebb13114118489686a7 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Sat, 25 Dec 2021 11:50:17 +0300 Subject: [PATCH] Fixes CI --- .github/workflows/test.yml | 6 +++--- CONTRIBUTING.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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: