File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -18,21 +18,19 @@ jobs:
18
18
- python/install-packages :
19
19
pkg-manager : poetry
20
20
- run :
21
- command : |
22
- poetry install
23
- sudo apt-get update
24
- sudo apt-get install -y libfuse-dev
25
- name : Install dependencies
26
- - run :
27
- command : |
28
- poetry run pytest
29
- name : Run tests
21
+ name : Install python dependencies
22
+ command : poetry install
30
23
pytest :
31
24
executor : python
32
25
steps :
33
26
- checkout
34
27
- python/install-packages :
35
28
pkg-manager : poetry
29
+ - run :
30
+ name : Install apt dependencies
31
+ command : |
32
+ sudo apt-get update
33
+ sudo apt-get install -y libfuse-dev
36
34
- run :
37
35
command : |
38
36
poetry run pytest
51
49
workflows :
52
50
main :
53
51
jobs :
54
- - pytest
52
+ - build
53
+ - pytest : {requires: [build]}
55
54
- linting
You can’t perform that action at this time.
0 commit comments