mirror of
https://github.com/apache/superset.git
synced 2026-04-09 11:25:23 +00:00
11 lines
246 B
Bash
Executable File
11 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo $DB
|
|
rm -f .coverage
|
|
export PYTHONPATH=./
|
|
export SUPERSET_CONFIG=tests.superset_test_config
|
|
set -e
|
|
superset/bin/superset version -v
|
|
export SOLO_TEST=1
|
|
# e.g. tests.core_tests:CoreTests.test_templated_sql_json
|
|
nosetests $1
|