mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 00:47:50 +01:00
df23e3353d
/bin/tests did not work for me anymore - I think this was the original intent?
12 lines
429 B
Bash
Executable File
12 lines
429 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
if ! command -v nodemon &> /dev/null
|
|
then
|
|
echo "Please install nodemon (npm install -g nodemon) to automatically run tests."
|
|
exit
|
|
fi
|
|
|
|
REDIS_URL='redis:///' OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES python manage.py test $@ --noinput
|
|
REDIS_URL='redis:///' nodemon -w ./posthog -w ./ee --ext py --exec "OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES python manage.py test --noinput --keepdb $@; mypy posthog ee"
|