datahub/smoke-test/smoke.sh

28 lines
881 B
Bash
Raw Normal View History

2021-04-29 23:27:03 -07:00
#!/bin/bash
set -euxo pipefail
2021-04-29 23:27:03 -07:00
# Runs a basic e2e test. It is not meant to be fully comprehensive,
# but rather should catch obvious bugs before they make it into prod.
#
# Script assumptions:
# - The gradle build has already been run.
# - Python 3.6+ is installed and in the PATH.
2021-04-29 23:27:03 -07:00
# Log the locally loaded images
# docker images | grep "datahub-"
2021-04-29 23:27:03 -07:00
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$DIR"
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip wheel setuptools
pip install -r requirements.txt
echo "DATAHUB_VERSION = $DATAHUB_VERSION"
DATAHUB_TELEMETRY_ENABLED=false datahub docker quickstart --quickstart-compose-file ../docker/quickstart/docker-compose-without-neo4j.quickstart.yml --dump-logs-on-failure
2021-04-29 23:27:03 -07:00
(cd tests/cypress ; yarn install)
pytest -vv --continue-on-collection-errors --junit-xml=junit.smoke.xml