Skip to content

Commit e585e8c

Browse files
author
Val Brodsky
committed
Turn on fixture profile for staging
1 parent 5a6e250 commit e585e8c

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
echo "LABELBOX_TEST_ENVIRON=prod" >> $GITHUB_ENV
4040
else
4141
echo "LABELBOX_TEST_ENVIRON=staging" >> $GITHUB_ENV
42+
echo "FIXTURE_PROFILE=true" >> $GITHUB_ENV
4243
fi
4344
4445
- uses: actions/checkout@v2

tests/integration/annotation_import/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,6 @@ def configured_project(client, initial_dataset, ontology, rand_gen, image_url):
522522

523523
yield project
524524

525-
batch.delete()
526525
project.delete()
527526

528527

tests/integration/test_filtering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def project_to_test_where(client, rand_gen):
1515
p_b = client.create_project(name=p_b_name, queue_mode=QueueMode.Batch)
1616
p_c = client.create_project(name=p_c_name, queue_mode=QueueMode.Batch)
1717

18-
yield p_a, p_b
18+
yield p_a, p_b, p_c
1919

2020
p_a.delete()
2121
p_b.delete()

0 commit comments

Comments
 (0)