From 7863a2490f518b571685c843525a40f1329f4576 Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Thu, 15 Sep 2022 10:47:13 +0200 Subject: [PATCH 1/2] reduce verbosity of prototype tests and split them into multiple steps --- .github/workflows/prototype-tests.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prototype-tests.yml b/.github/workflows/prototype-tests.yml index ff29168d9a7..93e6121faaa 100644 --- a/.github/workflows/prototype-tests.yml +++ b/.github/workflows/prototype-tests.yml @@ -39,6 +39,14 @@ jobs: - name: Install test requirements run: pip install --progress-bar=off pytest pytest-mock - - name: Run prototype tests + - name: Run prototype datasets tests shell: bash - run: pytest -vvv --durations=20 test/test_prototype_*.py + run: pytest --durations=20 test/test_prototype_datasets*.py + + - name: Run prototype transforms tests + shell: bash + run: pytest --durations=20 test/test_prototype_transforms*.py + + - name: Run prototype models tests + shell: bash + run: pytest --durations=20 test/test_prototype_models*.py From 4d54c9f5a14c782fecdb6af6a58c8771712f005d Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Thu, 15 Sep 2022 10:47:49 +0200 Subject: [PATCH 2/2] rename builtin datasets module to fit common scheme --- ...ype_builtin_datasets.py => test_prototype_datasets_builtin.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/{test_prototype_builtin_datasets.py => test_prototype_datasets_builtin.py} (100%) diff --git a/test/test_prototype_builtin_datasets.py b/test/test_prototype_datasets_builtin.py similarity index 100% rename from test/test_prototype_builtin_datasets.py rename to test/test_prototype_datasets_builtin.py