Browse Source

ref: run all the tests (including tests/snuba) (#58400)

<!-- Describe your PR here. -->
anthony sottile 1 year ago
parent
commit
7c3822791a
2 changed files with 6 additions and 6 deletions
  1. 1 1
      .github/workflows/backend.yml
  2. 5 5
      Makefile

+ 1 - 1
.github/workflows/backend.yml

@@ -66,7 +66,7 @@ jobs:
     needs: files-changed
     name: backend test
     runs-on: ubuntu-20.04
-    timeout-minutes: 40
+    timeout-minutes: 60
     strategy:
       # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
       # and reducing the risk that one of many runs would turn red again (read: intermittent tests)

+ 5 - 5
Makefile

@@ -128,11 +128,11 @@ test-js-ci: node-version-check
 test-python-ci: create-db
 	@echo "--> Running CI Python tests"
 	pytest \
-		tests/integration \
-		tests/relay_integration \
-		tests/sentry \
-		tests/sentry_plugins \
-		tests/symbolicator \
+		tests \
+		--ignore tests/acceptance \
+		--ignore tests/apidocs \
+		--ignore tests/js \
+		--ignore tests/tools \
 		--cov . --cov-report="xml:.artifacts/python.coverage.xml"
 	@echo ""