From 5b96e8a9a4cfcd809941596212ea637dcd493018 Mon Sep 17 00:00:00 2001 From: Andreas Eknes Lie Date: Mon, 11 Nov 2024 09:32:43 +0100 Subject: [PATCH] Add just command helper tool to repository --- justfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 00000000000..652f8e6f9d7 --- /dev/null +++ b/justfile @@ -0,0 +1,13 @@ +# configuration for for `just` + +# run poly example test-case +poly: + ert gui test-data/ert/poly_example/poly.ert + +# run snake oil test-case +snake_oil: + ert gui test-data/ert/snake_oil/snake_oil.ert + +# execute rapid unittests +rapid-tests: + pytest -n logical tests/ert/unit_tests -m "not integration_tests"