Rename requirements.txt file for dependabot to work

This commit is contained in:
sobolevn
2021-12-25 11:11:15 +03:00
parent b883e192e4
commit 3b303480b3
3 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install -U pip setuptools wheel pip install -U pip setuptools wheel
pip install -r ./dev-requirements.txt pip install -r ./requirements.txt
- name: Run pre-commit - name: Run pre-commit
run: pre-commit install && pre-commit run --all-files run: pre-commit install && pre-commit run --all-files
@@ -43,7 +43,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install -U pip setuptools wheel pip install -U pip setuptools wheel
pip install -r ./dev-requirements.txt pip install -r ./requirements.txt
- name: Run tests - name: Run tests
run: pytest run: pytest
@@ -70,7 +70,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install -U pip setuptools wheel pip install -U pip setuptools wheel
pip install -r ./dev-requirements.txt pip install -r ./requirements.txt
- name: Run tests - name: Run tests
run: python ./scripts/typecheck_tests.py --django_version="${{ matrix.django-version }}" run: python ./scripts/typecheck_tests.py --django_version="${{ matrix.django-version }}"

View File

@@ -43,7 +43,7 @@ source .venv/bin/activate
Then install the dev requirements: Then install the dev requirements:
```bash ```bash
pip install -r ./dev-requirements.txt pip install -r ./requirements.txt
``` ```
Finally, install the pre-commit hooks: Finally, install the pre-commit hooks: