Skip to content

Commit

Permalink
Merge pull request #89 from JuliaDebug/sp/no-nightly
Browse files Browse the repository at this point in the history
ci: no nightly tests and more robust runtests.jl
  • Loading branch information
pfitzseb authored Oct 17, 2022
2 parents 2db06bd + 94ca794 commit 03c5c43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- '1.6'
- '1.7'
- '1.8'
- 'nightly'
os:
- ubuntu-latest
arch:
Expand Down
7 changes: 5 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,11 @@ end
using TerminalRegressionTests

function run_terminal_test(func, result, commands, validation)
TerminalRegressionTests.automated_test(joinpath(@__DIR__, "outputs", validation), commands) do emuterm
# TerminalRegressionTests.create_automated_test(joinpath(@__DIR__, "outputs", validation), commands) do emuterm
test_func = TerminalRegressionTests.automated_test
if haskey(ENV, "INFILTRATOR_CREATE_TEST") && !haskey(ENV, "CI")
func = TerminalRegressionTests.create_automated_test
end
test_func(joinpath(@__DIR__, "outputs", validation), commands) do emuterm
Infiltrator.end_session!()
repl = REPL.LineEditREPL(emuterm, true)
repl.interface = REPL.setup_interface(repl)
Expand Down

0 comments on commit 03c5c43

Please sign in to comment.