Skip to content

Commit 4f9335a

Browse files
committed
fix make dev
1 parent 6c1763f commit 4f9335a

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/code_coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
python-version: 3.7
1818
- name: Install dependencies
1919
run: |
20-
make env
20+
python -m pip install --upgrade pip
21+
make dev
2122
- name: Coverage
2223
run: |
2324
make coverage

.github/workflows/lint_and_test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
python-version: 3.7
1414
- name: Install dependencies
1515
run: |
16-
make env
16+
python -m pip install --upgrade pip
17+
make dev
1718
- name: Lint
1819
working-directory: ${{ github.workspace }}
1920
run: |
@@ -29,7 +30,8 @@ jobs:
2930
python-version: 3.7
3031
- name: Install dependencies
3132
run: |
32-
make env
33+
python -m pip install --upgrade pip
34+
make dev
3335
- name: Test
3436
working-directory: ${{ github.workspace }}
3537
run: |

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
python-version: 3.7
1818
- name: Install dependencies
1919
run: |
20-
make env
20+
python -m pip install --upgrade pip
21+
make dev
2122
- name: Lint and Test
2223
run: |
2324
make lint

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ help:
66
@echo " - lint : checks code style"
77
@echo " - docs : creates documentation in html"
88

9-
env:
10-
python -m pip install --upgrade pip
9+
dev:
1110
pip install -r requirements-dev.txt
12-
13-
dev: env
14-
pip install .
11+
pip install -e .
1512
pre-commit install
1613

1714
clean:

0 commit comments

Comments
 (0)