Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test PR to demonstrate test failure #4219

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/post-build-selective.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@ jobs:
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
fail_on_failure: false
include_passed: false
summary: true
detailed_summary: true
annotate_only: true
require_tests: false
truncate_stack_traces: false
report_paths: 'out/**/test-report.xml'
1 change: 1 addition & 0 deletions main/eval/test/src/mill/eval/EvaluationTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ class EvaluationTests(threadCount: Option[Int]) extends TestSuite {
val overridden = os.read(
checker.evaluator.outPath / "foo.super/BaseModule.json"
)
throw new Exception("boom")
assert(
public.contains("base"),
public.contains("object"),
Expand Down
Loading