Skip to content

Commit

Permalink
Stop trying to run tests in parallel. Sigh.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneselvans committed Oct 26, 2023
1 parent b9ea55a commit 48f8b97
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docker/gcp_pudl_etl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,15 @@ function run_pudl_etl() {
--loglevel DEBUG \
--max-concurrent 6 \
--gcs-cache-path gs://internal-zenodo-cache.catalyst.coop \
$PUDL_SETTINGS_YML
# Run multiple pytest processes in the background and wait for them to exit
$PUDL_SETTINGS_YML && \
pytest \
--gcs-cache-path=gs://internal-zenodo-cache.catalyst.coop \
--etl-settings=$PUDL_SETTINGS_YML \
--live-dbs test/integration test/unit & \
--live-dbs test/integration test/unit && \
pytest \
--gcs-cache-path=gs://internal-zenodo-cache.catalyst.coop \
--etl-settings=$PUDL_SETTINGS_YML \
--live-dbs test/validate & \
wait
--live-dbs test/validate
}

function shutdown_vm() {
Expand Down

0 comments on commit 48f8b97

Please sign in to comment.