Skip to content

Commit

Permalink
uncomment simulation tests from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kingpinXD committed Oct 23, 2024
1 parent 9791e99 commit 643490d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/simulation-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ on:
# The workflow runs when code is pushed to either the main or develop branches
push:
branches:
- sim-import-export
# - main
# - develop
# # The workflow runs when a pull request is opened or updated
# pull_request:
# # Run daily at 6AM UTC Daily
# schedule:
# - cron: "0 6 * * *"
# # It can be run manually targetting a specific test
- main
- develop
# The workflow runs when a pull request is opened or updated
pull_request:
# Run daily at 6AM UTC Daily
schedule:
- cron: "0 6 * * *"
# It can be run manually targetting a specific test
workflow_dispatch:
inputs:
test-target:
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -387,16 +387,16 @@ define run-sim-test
endef

test-sim-nondeterminism:
$(call run-sim-test,"non-determinism test",TestAppStateDeterminism,10,20,2h)
$(call run-sim-test,"non-determinism test",TestAppStateDeterminism,100,200,30m)

test-sim-fullappsimulation:
$(call run-sim-test,"TestFullAppSimulation",TestFullAppSimulation,100,200,2h)
$(call run-sim-test,"TestFullAppSimulation",TestFullAppSimulation,100,200,30m)

test-sim-import-export:
$(call run-sim-test,"test-import-export",TestAppImportExport,10,20,2h)
$(call run-sim-test,"test-import-export",TestAppImportExport,100,200,30m)

test-sim-after-import:
$(call run-sim-test,"test-sim-after-import",TestAppSimulationAfterImport,10,20,2h)
$(call run-sim-test,"test-sim-after-import",TestAppSimulationAfterImport,100,200,30m)

test-sim-multi-seed-long: runsim
@echo "Running long multi-seed application simulation."
Expand Down

0 comments on commit 643490d

Please sign in to comment.