0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 19:16:37 +01:00
posthog/bin/tests
Karl-Aksel Puulmann fa79f8ea67
BE (Groups/Trends): Allow aggregating by groups (#6894)
* Type math in Entity

* Allow passing group_type_index from FE to BE

* Get a initial query running

* Add group value filter if aggregating by groups

* Add snapshot testing for trends queries

* isort

* Update tests

* Add test for column_optimizer

* Update ee/clickhouse/queries/trends/util.py

Co-authored-by: Neil Kakkar <neilkakkar@gmail.com>

Co-authored-by: Neil Kakkar <neilkakkar@gmail.com>
2021-11-05 13:08:32 +02:00

30 lines
818 B
Bash
Executable File

#!/bin/bash
set -e
if ! command -v nodemon &> /dev/null
then
echo "Please install nodemon (npm install -g nodemon) to automatically run tests."
exit
fi
if [ $# -eq 0 ]; then
echo "Are you sure you want to run all backend tests? You can run specific tests by doing:"
echo " "
echo "bin/tests posthog/api/test/test_user.py::TestUserAPI::test_retrieve_current_user"
echo " "
read -r -p "Run all tests? [y/N] " response
if [[ "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]
then
echo "OK!"
else
exit
fi
fi
export REDIS_URL='redis:///'
export TEST=1
export DEBUG=1
psql posthog -c "drop database if exists test_posthog"
nodemon -w ./posthog -w ./ee --ext py --exec "OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES pytest --reuse-db -s $* --snapshot-update; mypy posthog ee"