Skip to content

Commit 99870bd

Browse files
committed
Order of tests
1 parent 430222d commit 99870bd

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ jobs:
5454
- name: Unittests with pytest
5555
run: |
5656
pytest tests/unittests
57-
- name: Integration tests with pytest
58-
run: |
59-
pytest recipes/minimal_examples
6057
- name: Doctests with pytest
6158
run: |
6259
pytest --doctest-modules speechbrain
60+
- name: Integration tests with pytest
61+
run: |
62+
pytest recipes/minimal_examples

.pre-push-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ repos:
4040

4141
- repo: local
4242
hooks:
43-
- id: integration
44-
name: integration
45-
entry: pytest recipes/minimal_examples
43+
- id: doctests
44+
name: doctests
45+
entry: pytest --doctest-modules speechbrain
4646
language: python
4747
pass_filenames: False
4848
always_run: True
4949
require_serial: False
5050

5151
- repo: local
5252
hooks:
53-
- id: doctests
54-
name: doctests
55-
entry: pytest --doctest-modules speechbrain
53+
- id: integration
54+
name: integration
55+
entry: pytest recipes/minimal_examples
5656
language: python
5757
pass_filenames: False
5858
always_run: True

0 commit comments

Comments
 (0)