You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/config.yml
+15-8Lines changed: 15 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ jobs:
21
21
name: Install dependencies
22
22
command: |
23
23
make install
24
+
make clean
24
25
# pip install --editable git+https://github.com/openfisca/country-template.git@BRANCH_NAME#egg=OpenFisca-Country-Template # use a specific branch of OpenFisca-Country-Template
25
26
# pip install --editable git+https://github.com/openfisca/extension-template.git@BRANCH_NAME#egg=OpenFisca-Extension-Template # use a specific branch of OpenFisca-Extension-Template
26
27
@@ -30,8 +31,20 @@ jobs:
30
31
- /tmp/venv/openfisca_core
31
32
32
33
- run:
33
-
name: Run Core tests
34
-
command: make test pytest_args="--exitfirst"
34
+
name: Run linters
35
+
command: make lint
36
+
37
+
- run:
38
+
name: Run openfisca-core tests
39
+
command: make test-core pytest_args="--exitfirst"
40
+
41
+
- run:
42
+
name: Run country-template tests
43
+
command: make test-country pytest_args="--exitfirst"
44
+
45
+
- run:
46
+
name: Run extension-template tests
47
+
command: make test-extension pytest_args="--exitfirst"
35
48
36
49
- run:
37
50
name: Check NumPy typing against latest 3 minor versions
0 commit comments