File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 15
15
with :
16
16
python-version : ' 3.8.2'
17
17
18
+ - name : Install dependencies
19
+ run : |
20
+ python -m pip install --upgrade pip
21
+ pip install --requirement "$GITHUB_WORKSPACE/libraries/report-size-deltas/requirements.txt"
22
+
18
23
- name : Lint with flake8
19
24
run : |
20
25
pip install --quiet flake8
24
29
- name : Run Python unit tests
25
30
run : |
26
31
export PYTHONPATH="$GITHUB_WORKSPACE/libraries/report-size-deltas"
27
- python -m unittest discover "$GITHUB_WORKSPACE/libraries/report-size-deltas/tests"
32
+ pytest "$GITHUB_WORKSPACE/libraries/report-size-deltas/tests"
Original file line number Diff line number Diff line change
1
+ pytest == 5.4.1
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ filterwarnings =
3
+ error
4
+ ignore::DeprecationWarning
5
+ ignore::ResourceWarning
6
+
7
+ markers =
8
+ slow: marks tests as slow (deselect with ' -m "not slow"' )
You can’t perform that action at this time.
0 commit comments