Skip to content

Commit

Permalink
feat: Adding scripts without docker
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMcL committed Jul 25, 2023
1 parent bf6d09c commit a6e26f4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/run-fuzz-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

python -m vega_sim.scenario.fuzzed_markets.run_fuzz_test --steps $1
9 changes: 9 additions & 0 deletions scripts/run-integration-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

set -e

WORK_DIR="$(realpath "$(dirname "$0")/..")"
RESULT_DIR="${WORK_DIR}/test_logs/$(date '+%F_%H%M%S')-integration"
mkdir -p "${RESULT_DIR}"

pytest -s -v -m integration --junitxml ${RESULT_DIR}/integration-test-results.xml --log-cli-level INFO
3 changes: 3 additions & 0 deletions scripts/run-plot-gen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

python -m tests.integration.test_plot_gen

0 comments on commit a6e26f4

Please sign in to comment.