Skip to content

Commit

Permalink
Fixes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Dec 25, 2021
1 parent 2655a8f commit 466b1f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 466b1f5

Please sign in to comment.