We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b22e3f commit c950d84Copy full SHA for c950d84
bin/run_integration_tests
@@ -32,6 +32,14 @@ echo "🚀 PostHog Python SDK Integration Tests"
32
echo "=" | head -c 40 | tr '\n' '='
33
echo
34
35
+# Load .env file if it exists
36
+if [ -f ".env" ]; then
37
+ echo "📝 Loading environment variables from .env file..."
38
+ set -a # automatically export all variables
39
+ source .env
40
+ set +a # disable auto-export
41
+fi
42
+
43
# Check if the integration test file exists
44
INTEGRATION_TEST_FILE="posthog/test/manual_integration/test_flag_dependencies.py"
45
if [ ! -f "$INTEGRATION_TEST_FILE" ]; then
0 commit comments