diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2024-02-06 14:32:57 -0500 |
|---|---|---|
| committer | Kevin Newton <kddnewton@gmail.com> | 2024-02-06 20:38:41 -0500 |
| commit | ae13f8532217cbe344a440b4df2329194e2dad5d (patch) | |
| tree | 6d57ccf4aed46de8e24ab19d7408c8f01c48de4e /.github | |
| parent | 44f0dc622ae08e851127c0fec3cc545256b6c040 (diff) | |
Add test-all to prism
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/prism.yml | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/.github/workflows/prism.yml b/.github/workflows/prism.yml index d8fbb8ee83..151fd2c496 100644 --- a/.github/workflows/prism.yml +++ b/.github/workflows/prism.yml @@ -83,33 +83,23 @@ jobs: - run: $SETARCH make - - name: make btest + - name: make test run: | - make -s btest RUN_OPTS="$RUN_OPTS" + $SETARCH make -s test RUN_OPTS="$RUN_OPTS" timeout-minutes: 30 env: GNUMAKEFLAGS: '' RUBY_TESTOPTS: '-v --tty=no' RUN_OPTS: ${{ matrix.run_opts }} - continue-on-error: true - # - name: make test - # run: | - # $SETARCH make -s test RUN_OPTS="$RUN_OPTS" - # timeout-minutes: 30 - # env: - # GNUMAKEFLAGS: '' - # RUBY_TESTOPTS: '-v --tty=no' - # RUN_OPTS: ${{ matrix.run_opts }} - - # - name: make test-all - # run: | - # $SETARCH make -s test-all RUN_OPTS="$RUN_OPTS" - # timeout-minutes: 40 - # env: - # GNUMAKEFLAGS: '' - # RUBY_TESTOPTS: '-q --tty=no' - # RUN_OPTS: ${{ matrix.run_opts }} + - name: make test-all + run: | + $SETARCH make -s test-all RUN_OPTS="$RUN_OPTS" + timeout-minutes: 40 + env: + GNUMAKEFLAGS: '' + RUBY_TESTOPTS: '-q --tty=no --excludes-dir="../src/test/.excludes-prism" --exclude="test_ast.rb" --exclude="test_regexp.rb" --exclude="error_highlight/test_error_highlight.rb"' + RUN_OPTS: ${{ matrix.run_opts }} # - name: make test-spec # run: | |
