Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 8, 2024
1 parent 8d268e5 commit f96634d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/lucee-spreadsheet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ jobs:
with:
java-version: ${{matrix.javaVersion}}
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: maven-cache
- name: Cache Lucee files
uses: actions/cache@v4
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
- name: Run Test Suite
uses: lucee/script-runner@main
with:
Expand Down
3 changes: 2 additions & 1 deletion custom/lucee-spreadsheet/test/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
result = testRunner.runRaw( bundles=paths );
reporter = testRunner.buildReporter( "text" );
try {
report = reporter.runReport( results=result, testbox=testRunner, justReturn=true );
// report = reporter.runReport( results=result, testbox=testRunner, justReturn=true );
} catch (e) {
systemOutput(e, true);
}
report = "disabled";
failure = ( result.getTotalFail() + result.getTotalError() ) > 0;
headline = "Lucee #server.lucee.version# / Java #server.java.version#";
Expand Down

0 comments on commit f96634d

Please sign in to comment.