diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 790bf5cd7..27364c765 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -31,23 +31,26 @@ jobs: - name: Copy Artifacts into Root Folder working-directory: ./artifacts run: | - cp .coverage/.coverage ../ - cp .lint.txt/.lint.txt ../ - - - name: Generate Report - run: poetry run nox -s report -- -- --format json | tee metrics.json - - - name: Upload Artifacts - uses: actions/upload-artifact@v3 - with: - name: metrics.json - path: metrics.json - - - name: Generate GitHub Summary - run: | - echo -e "# Summary\n" >> $GITHUB_STEP_SUMMARY - poetry run nox -s report -- -- --format markdown >> $GITHUB_STEP_SUMMARY - echo -e "\n\n# Coverage\n" >> $GITHUB_STEP_SUMMARY - poetry run coverage report -- --format markdown >> $GITHUB_STEP_SUMMARY - echo -e "\n\n# Static Code Analysis\n" >> $GITHUB_STEP_SUMMARY - cat .lint.txt >> $GITHUB_STEP_SUMMARY +# can be used again if “issue #181” is closed +# https://github.com/exasol/python-toolbox/issues/181 +# +# cp .coverage/.coverage ../ +# cp .lint.txt/.lint.txt ../ +# +# - name: Generate Report +# run: poetry run nox -s report -- -- --format json | tee metrics.json +# +# - name: Upload Artifacts +# uses: actions/upload-artifact@v3 +# with: +# name: metrics.json +# path: metrics.json + +# - name: Generate GitHub Summary +# run: | +# echo -e "# Summary\n" >> $GITHUB_STEP_SUMMARY +# poetry run nox -s report -- -- --format markdown >> $GITHUB_STEP_SUMMARY +# echo -e "\n\n# Coverage\n" >> $GITHUB_STEP_SUMMARY +# poetry run coverage report -- --format markdown >> $GITHUB_STEP_SUMMARY +# echo -e "\n\n# Static Code Analysis\n" >> $GITHUB_STEP_SUMMARY +# cat .lint.txt >> $GITHUB_STEP_SUMMARY