Skip to content

Commit 57351cc

Browse files
committed
revert
1 parent fe83034 commit 57351cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: pylint analysis and custom pylint HTML report
3838
run: |
3939
# Create a timestamp for the output file
40-
TIMESTAMP=$(date "%Y%m%d_%H%M%S_%Z")
40+
TIMESTAMP=$(date +"%Y%m%d_%H%M%S_%Z")
4141
PYLINT_OUTPUT_FILE="pylint_output_${TIMESTAMP}.txt"
4242
4343
# Generate text report
@@ -101,7 +101,7 @@ jobs:
101101
- name: pytest coverage and custom coverage HTML report
102102
run: |
103103
# Create a timestamp for the output file
104-
TIMESTAMP=$(date "%Y%m%d_%H%M%S_%Z")
104+
TIMESTAMP=$(date +"%Y%m%d_%H%M%S_%Z")
105105
106106
pytest -v --cov=rattlesnake --cov-report=html --cov-report=xml --cov-report=term-missing
107107
@@ -172,7 +172,7 @@ jobs:
172172
curl -o badges/pylint.svg "https://img.shields.io/badge/pylint-${SCORE}-${{ env.BADGE_COLOR }}.svg"
173173
cat > badges/pylint-info.json << EOF
174174
{
175-
"score": "$SCORE",
175+
"score": "${SCORE}",
176176
"color": "${{ env.BADGE_COLOR }}",
177177
"pages_url": "https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/reports/pylint/",
178178
"workflow_url": "${{ github.server_url }}/${{ github.repository }}/actions/workflows/ci.yml",
@@ -285,4 +285,4 @@ jobs:
285285
286286
- name: Run tests
287287
run: |
288-
pytest
288+
pytest -v

0 commit comments

Comments
 (0)