Skip to content

Commit f779e94

Browse files
authored
Change installation method to use pip install .
1 parent 784f69d commit f779e94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python -m pip install --upgrade pip
3434
pip install django~=${{ matrix.django-version }} coverage
3535
pip install -r tests/requirements/base.txt
36-
python setup.py install
36+
pip install .
3737
3838
- name: Run coverage
3939
run: coverage run tests/settings.py
@@ -67,7 +67,7 @@ jobs:
6767
python -m pip install --upgrade pip
6868
pip install ${{ matrix.django-version }} coverage
6969
pip install -r tests/requirements/base.txt
70-
python setup.py install
70+
pip install .
7171
7272
- name: Run coverage
7373
run: coverage run tests/settings.py

0 commit comments

Comments
 (0)