Skip to content

Commit

Permalink
feat: optionally not run MATSim (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhoerl authored May 19, 2024
1 parent 67afb8e commit b953b42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

**Under development**

- feat: make it possible to disable the test run of MATSim before writing everything out
- feat: check availability of open data sources for every PR
- feat: make statistical matching attribute list configurable
- feat: add urban type classifiation (unité urbaine)
Expand Down
5 changes: 4 additions & 1 deletion matsim/output.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import shutil

def configure(context):
context.stage("matsim.simulation.run")
if context.config("run_matsim", True):
# allow disabling performing one run of the simulation
context.stage("matsim.simulation.run")

context.stage("matsim.simulation.prepare")
context.stage("matsim.runtime.eqasim")

Expand Down

0 comments on commit b953b42

Please sign in to comment.