From b9c6fc5f9a7bc2dfdc4324ee54df2ac28c4ccee4 Mon Sep 17 00:00:00 2001 From: maxachis Date: Mon, 11 Nov 2024 15:02:31 -0500 Subject: [PATCH 1/3] Re-added `python tests/test_schema_validation.py` --- .github/workflows/run_pytest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 36627a2c..2318cf86 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -34,5 +34,6 @@ jobs: pytest tests/test_database_client.py pytest tests/test_database.py pytest tests/test_schema_aligned_with_db_table.py + python tests/test_schema_validation.py From 2dd68643d8ef93af367c7c74e220011c4f760bcd Mon Sep 17 00:00:00 2001 From: maxachis Date: Mon, 11 Nov 2024 15:17:31 -0500 Subject: [PATCH 2/3] Temporarily remove other tests to more quickly test `test_schema_validation.py` --- .github/workflows/run_pytest.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 2318cf86..3e3372d3 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -27,13 +27,7 @@ jobs: pip install pytest pytest-cov - name: Run tests run: | - pytest tests/integration - pytest tests/middleware - pytest tests/resources - pytest tests/test_endpoints.py - pytest tests/test_database_client.py - pytest tests/test_database.py - pytest tests/test_schema_aligned_with_db_table.py - python tests/test_schema_validation.py + pytest tests/test_schema_validation.py + From 976b5fe1956f0d598b33f1c91ade2a442d9c9c36 Mon Sep 17 00:00:00 2001 From: maxachis Date: Mon, 11 Nov 2024 15:19:34 -0500 Subject: [PATCH 3/3] Re-add other tests --- .github/workflows/run_pytest.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 3e3372d3..751f93f9 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -27,7 +27,13 @@ jobs: pip install pytest pytest-cov - name: Run tests run: | + pytest tests/integration + pytest tests/middleware + pytest tests/resources + pytest tests/test_endpoints.py + pytest tests/test_database_client.py + pytest tests/test_database.py + pytest tests/test_schema_aligned_with_db_table.py pytest tests/test_schema_validation.py -