From 5381048202fe331e248f2fcbbd95b7643528dc47 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Fri, 19 May 2023 15:31:26 -0400 Subject: [PATCH] break out a large test suite as a separate execution to avoid memory issues on windows CI runs --- .changes/unreleased/Under the Hood-20230519-153059.yaml | 6 ++++++ tox.ini | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Under the Hood-20230519-153059.yaml diff --git a/.changes/unreleased/Under the Hood-20230519-153059.yaml b/.changes/unreleased/Under the Hood-20230519-153059.yaml new file mode 100644 index 00000000000..578cce81932 --- /dev/null +++ b/.changes/unreleased/Under the Hood-20230519-153059.yaml @@ -0,0 +1,6 @@ +kind: Under the Hood +body: Break up integration tests as a short term fix for Windows CI runs +time: 2023-05-19T15:30:59.138043-04:00 +custom: + Author: mikealfare + Issue: "7668" diff --git a/tox.ini b/tox.ini index e0f96bf3eda..79b072d35d4 100644 --- a/tox.ini +++ b/tox.ini @@ -25,7 +25,8 @@ passenv = POSTGRES_TEST_* PYTEST_ADDOPTS commands = - {envpython} -m pytest --cov=core {posargs} tests/functional + {envpython} -m pytest --cov=core {posargs} tests/functional -k "not tests/functional/graph_selection" + {envpython} -m pytest --cov=core {posargs} tests/functional/graph_selection {envpython} -m pytest --cov=core {posargs} tests/adapter deps =