Browse Source

chore(acceptance) Fix local acceptance test builds (#68620)

Don't mutate settings while building assets. This should improve
first-time run of acceptance tests locally without impacting CI.
Mark Story 11 months ago
parent
commit
0ec8456a9d
1 changed files with 0 additions and 3 deletions
  1. 0 3
      tests/acceptance/conftest.py

+ 0 - 3
tests/acceptance/conftest.py

@@ -3,7 +3,6 @@ import subprocess
 import sys
 import sys
 import time
 import time
 
 
-from sentry.testutils.pytest.sentry import configure_split_db
 from sentry.utils import json
 from sentry.utils import json
 
 
 
 
@@ -70,5 +69,3 @@ def pytest_configure(config):
         raise Exception(
         raise Exception(
             "Unable to run `yarn` -- make sure your development environment is setup correctly: https://docs.sentry.io/development/contribute/environment/#macos---nodejs"
             "Unable to run `yarn` -- make sure your development environment is setup correctly: https://docs.sentry.io/development/contribute/environment/#macos---nodejs"
         )
         )
-
-    configure_split_db()