From 7f0049d9b953a38625bfafb1f363f7d7fbe2374b Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Tue, 21 May 2024 11:29:52 +0200 Subject: [PATCH 1/2] add more start/end datetime tests --- tests/api/test_search.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/api/test_search.py b/tests/api/test_search.py index 15fd19c..95899ab 100644 --- a/tests/api/test_search.py +++ b/tests/api/test_search.py @@ -77,6 +77,14 @@ def test_temporal_search_two_tailed(): assert search.start_date == utcnow assert search.end_date is None + search = Search(collections=["collection1"], datetime=f"../{utcnow_str}") + assert search.start_date is None + assert search.end_date == utcnow + + search = Search(collections=["collection1"], datetime=f"/{utcnow_str}") + assert search.start_date is None + assert search.end_date == utcnow + def test_temporal_search_open(): # Test open date range From 9801cbb210fab8c246e725b8cb7f8b04500b5ffe Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Tue, 21 May 2024 15:50:56 +0200 Subject: [PATCH 2/2] update codecov --- .github/workflows/cicd.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index c2b72c3..b22a78f 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -8,6 +8,8 @@ on: tags: - '*' pull_request: +env: + LATEST_PY_VERSION: '3.12' jobs: tests: @@ -35,10 +37,10 @@ jobs: run: tox -e py - name: Upload Results - if: success() - uses: codecov/codecov-action@v1 + if: ${{ matrix.python-version == env.LATEST_PY_VERSION }} + uses: codecov/codecov-action@v4 with: file: ./coverage.xml flags: unittests - name: ${{ matrix.platform }}-${{ matrix.tox-env }} + name: ${{ matrix.python-version }} fail_ci_if_error: false