From 74a6155d9a922ddb38396809d635fc7733f91804 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Mon, 16 Dec 2024 16:05:47 -0600 Subject: [PATCH] chore: enable internal framework stacktraces --- .github/workflows/test.yaml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d1d6a92..ae05694 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -97,4 +97,4 @@ jobs: - name: Run Tests #TODO: Put back: run: pytest -n 0 -s --cov - run: pytest tests/functional/test_account.py::test_swap_owner --maxfail 1 --stepwise -vvv + run: pytest tests/functional/test_account.py::test_swap_owner --maxfail 1 -vvv diff --git a/pyproject.toml b/pyproject.toml index 2fde2bd..4b3c15e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ addopts = """ --cov-report html --cov-report xml --cov=ape_safe + --show-internal """ python_files = "test_*.py" testpaths = "tests"