Skip to content

Instantly share code, notes, and snippets.

@krzema12
Created November 20, 2022 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krzema12/dda0305b917552586f609b9b0b35eff7 to your computer and use it in GitHub Desktop.
Save krzema12/dda0305b917552586f609b9b0b35eff7 to your computer and use it in GitHub Desktop.
(truncated)
- name: Run end-to-end tests
run: JDK_9="$JAVA_HOME" python/e2e-tests/run.sh
if: ${{ matrix.testTask == 'pythonTest' }}
- name: Run box tests (succeed even if they fail)
run: JDK_9="$JAVA_HOME" ./gradlew :python:box.tests:${{ matrix.testTask }} || true
- name: Generate box tests reports
run: python/experiments/generate-box-tests-reports.main.kts --test-task=${{ matrix.testTask }}
- name: Upload common artifact
if: ${{ matrix.testTask == 'pythonTest' }}
uses: actions/upload-artifact@v2
with:
name: common-artifact
path: |
python/box.tests/reports/git-history-plot.svg
python/experiments/generated
(truncated)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment