Skip to content

Commit

Permalink
test foss test as well
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkakkar committed Apr 17, 2024
1 parent 48cd643 commit 33e36ff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/actions/run-backend-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,6 @@ runs:
if: failure() && (steps.run-foss-tests.outcome != 'failure' && steps.run-ee-tests.outcome != 'failure' && steps.run-decide-read-replica-tests.outcome != 'failure')
shell: bash
run: |
echo "Previous steps outcome: "
echo "FOSS tests: ${{ steps.run-foss-tests.outcome }}"
echo "EE tests: ${{ steps.run-ee-tests.outcome }}"
echo "Decide read replica tests: ${{ steps.run-decide-read-replica-tests.outcome }}"
docker compose -f docker-compose.dev.yml logs
- name: Upload updated timing data as artifacts
Expand Down
2 changes: 1 addition & 1 deletion posthog/api/test/test_feature_flag.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_is_simple_flag_groups(self, mock_capture):
},
format="json",
).json()
self.assertFalse(feature_flag["is_simple_flag"])
self.assertTrue(feature_flag["is_simple_flag"])
# Assert analytics are sent
instance = FeatureFlag.objects.get(id=feature_flag["id"])
mock_capture.assert_called_once_with(
Expand Down

0 comments on commit 33e36ff

Please sign in to comment.