123456789101112131415161718192021222324252627282930313233343536373839 |
- import os
- import sys
- dist_path = os.path.abspath(
- os.path.join(os.path.dirname(__file__), "src", "sentry", "static", "sentry", "dist")
- )
- manifest_path = os.path.join(dist_path, "manifest.json")
- pytest_plugins = ["sentry.utils.pytest"]
- sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
- def pytest_configure(config):
- import warnings
- # XXX(dcramer): Kombu throws a warning due to transaction.commit_manually
- # being used
- warnings.filterwarnings("error", "", Warning, r"^(?!(|kombu|raven|sentry))")
- # Create an empty webpack manifest file - otherwise tests will crash if it does not exist
- os.makedirs(dist_path, exist_ok=True)
- # Only create manifest if it doesn't exist
- # (e.g. acceptance tests will have an actual manifest from webpack)
- if os.path.exists(manifest_path):
- return
- with open(manifest_path, "w+") as fp:
- fp.write("{}")
- def pytest_unconfigure():
- if not os.path.exists(manifest_path):
- return
- # Clean up manifest file if contents are empty
- with open(manifest_path) as f:
- if f.read() == "{}":
- os.remove(manifest_path)
|