Skip to content

Commit 3326921

Browse files
Sid MohanSid Mohan
Sid Mohan
authored and
Sid Mohan
committed
- updated cicd files
1 parent c76a4c8 commit 3326921

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/feature-cicd.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,20 @@ jobs:
3131
steps:
3232
- name: Check out repo
3333
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
3448
- name: Set up Python
3549
uses: actions/setup-python@v4
3650
with:
@@ -57,7 +71,7 @@ jobs:
5771
run: |
5872
sudo apt-get clean
5973
- 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
6175
- name: Submit to Codecov
6276
uses: codecov/codecov-action@v3
6377
with:

.github/workflows/main-cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
pip install -e .
5555
pip install tox just pre-commit
5656
- 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
5858
- name: Submit to Codecov
5959
uses: codecov/codecov-action@v3
6060
with:

0 commit comments

Comments
 (0)