mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
6 lines
291 B
Bash
Executable File
6 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
REDIS_URL='redis:///' OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES python manage.py test $@ --noinput
|
|
REDIS_URL='redis:///' npx nodemon -w ./posthog -w ./ee --ext py --exec "OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES python manage.py test --noinput --keepdb $@; mypy posthog ee"
|