superset/scripts/tests
Daniel Vaz Gaspar f37fc1a7f0
chore: bump majors on celery and Flask (#19168)
* chore: bump celery, Flask, flask-jwt-extended, pyJWT

* fix pyJWT breaking change

* fix pyJWT breaking change 2

* test

* fixed test

* fixed test

* fixed test

* revert since mypy won't pick the correct signature

* lint 1

* fix test

* fix test

* docs and celery config migration

* bump FAB to 4.0.0rc3, remove AUTH_STRICT_RESPONSE_CODES

* update docs for new celery config keys

* downgrade celery to 5.2.2

* ref FAB to final 4.0.0 release

* remove conflict left over
2022-03-24 09:16:53 +00:00
..
README.md tests: update test run doc and add some improvements (#10339) 2020-07-16 13:03:49 +01:00
run.sh chore: bump majors on celery and Flask (#19168) 2022-03-24 09:16:53 +00:00

README.md

Utility script to run tests faster

By default tests will be run using the Postgres container defined at the docker-compose file on the root of the repo, so prior to using this script make sure to launch the dev containers.

You can use a different DB backend by defining SUPERSET__SQLALCHEMY_DATABASE_URI env var.

This script will not install any dependencies for you, so you must be on an already set virtualenv

Use:

To show all supported switches:

scripts/tests/run.sh --help

From the superset repo root directory:

  • Example run all tests:
scripts/tests/run.sh
  • Example run a single test module:
scripts/tests/run.sh --module tests/charts/api_tests.py
  • Example run a single test:
scripts/tests/run.sh --module tests/charts/api_tests.py::TestChartApi::test_get_charts
  • Example run a single test, without any init procedures. Init procedures include: resetting test database, db upgrade, superset init, loading example data. If your tests are idempotent, after the first run, subsequent runs are really fast
scripts/tests/run.sh --module tests/charts/api_tests.py::TestChartApi::test_get_charts --no-init
  • Example for not recreating the test DB (will still run all the tests init procedures)
scripts/tests/run.sh --module tests/charts/api_tests.py::TestChartApi::test_get_charts --no-reset-db
  • Example for not running tests just initialize the test DB (drop/create, upgrade and load examples)
scripts/tests/run.sh --no-tests
  • Example for just resetting the tests DB
scripts/tests/run.sh --reset-db --no-tests