2022-12-08 20:27:51 -06:00
|
|
|
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
cd "$DIR"
|
|
|
|
|
2023-01-31 18:44:37 -06:00
|
|
|
if [ "${RUN_QUICKSTART:-true}" == "true" ]; then
|
|
|
|
source ./run-quickstart.sh
|
|
|
|
fi
|
2022-12-08 20:27:51 -06:00
|
|
|
|
2023-01-31 18:44:37 -06:00
|
|
|
source venv/bin/activate
|
2022-12-08 20:27:51 -06:00
|
|
|
|
|
|
|
python -c 'from tests.cypress.integration_test import ingest_data; ingest_data()'
|
|
|
|
|
|
|
|
cd tests/cypress
|
|
|
|
npm install
|
|
|
|
|
2023-05-01 09:28:11 -05:00
|
|
|
source ../../set-cypress-creds.sh
|
2022-12-08 20:27:51 -06:00
|
|
|
|
2023-05-01 09:28:11 -05:00
|
|
|
npx cypress open
|