File tree 2 files changed +16
-2
lines changed 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 31
31
steps :
32
32
- name : Check out repo
33
33
uses : actions/checkout@v4
34
+ - name : Free Disk Space (Ubuntu)
35
+ uses : jlumbroso/free-disk-space@main
36
+ with :
37
+ # this might remove tools that are actually needed,
38
+ # if set to "true" but frees about 6 GB
39
+ tool-cache : false
40
+ # all of these default to true, but feel free to set to
41
+ # "false" if necessary for your workflow
42
+ android : true
43
+ dotnet : true
44
+ haskell : true
45
+ large-packages : true
46
+ docker-images : true
47
+ swap-storage : true
34
48
- name : Set up Python
35
49
uses : actions/setup-python@v4
36
50
with :
57
71
run : |
58
72
sudo apt-get clean
59
73
- name : Run Tests with tox
60
- run : tox -- --cov datafog --cov-report xml --cov-report term --codeblocks
74
+ run : tox -- --cov datafog --cov-report xml --cov-report term -v -s --cov-report=term-missing
61
75
- name : Submit to Codecov
62
76
uses : codecov/codecov-action@v3
63
77
with :
Original file line number Diff line number Diff line change 54
54
pip install -e .
55
55
pip install tox just pre-commit
56
56
- name : Run Tests with tox
57
- run : tox -- --cov datafog --cov-report xml --cov-report term --codeblocks
57
+ run : tox -- --cov datafog --cov-report xml --cov-report term -v -s --cov-report=term-missing
58
58
- name : Submit to Codecov
59
59
uses : codecov/codecov-action@v3
60
60
with :
You can’t perform that action at this time.
0 commit comments