From 744c23f8ceda1fcd39c90b3c8df10e01f3626a1e Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Tue, 10 Jun 2025 00:04:53 +0300 Subject: [PATCH 1/8] Revert "[pre-commit.ci] pre-commit autoupdate" This reverts commit 5617ce2b77c2839ecfd0bc99ac407db7407b1fa6. --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dcbfd3c..89dc0a2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.11.13 + rev: v0.11.11 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From 76e17713ab551548b8f30e911feeba5e348c9823 Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Tue, 10 Jun 2025 00:25:31 +0300 Subject: [PATCH 2/8] Reapply "[pre-commit.ci] pre-commit autoupdate" This reverts commit 744c23f8ceda1fcd39c90b3c8df10e01f3626a1e. --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 89dc0a2..dcbfd3c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.11.11 + rev: v0.11.13 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From a42a54703cc2642f4cfd8c2c2f074416bd90ad1f Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Tue, 10 Jun 2025 00:25:47 +0300 Subject: [PATCH 3/8] TMP: remove set -e from CI run --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bb4fff..17c3b5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,6 @@ jobs: env: PYTEST_HTTPSERVER_HOST: '127.0.0.1' run: | - set -e poetry run pytest tests -s -vv --release poetry run pytest tests -s -vv --ssl From c534178112f33c5f63aee7de60276c6d7c2c4041 Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Fri, 13 Jun 2025 22:11:07 +0300 Subject: [PATCH 4/8] TMP: try windows CI --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17c3b5f..842cdf5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,8 +71,7 @@ jobs: env: PYTEST_HTTPSERVER_HOST: '127.0.0.1' run: | - poetry run pytest tests -s -vv --release - poetry run pytest tests -s -vv --ssl + echo FOO - name: Codecov upload From b5defa7ee148ae5ff36f4c61923deeddbb187638 Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Fri, 13 Jun 2025 22:17:44 +0300 Subject: [PATCH 5/8] TMP: re-add poetry --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 842cdf5..94e9dff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,8 @@ jobs: env: PYTEST_HTTPSERVER_HOST: '127.0.0.1' run: | - echo FOO + poetry run pytest tests -s -vv --release + # poetry run pytest tests -s -vv --ssl - name: Codecov upload From f2124e623b81e6395b55d1ce2c4c1d4ecf64d6a7 Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Fri, 13 Jun 2025 22:21:55 +0300 Subject: [PATCH 6/8] TMP: add echo --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94e9dff..7b8ddf3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,6 +71,8 @@ jobs: env: PYTEST_HTTPSERVER_HOST: '127.0.0.1' run: | + echo FOO + which poetry poetry run pytest tests -s -vv --release # poetry run pytest tests -s -vv --ssl From 15f28de32159994de1d1163111bfa85257a2c5dc Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Fri, 13 Jun 2025 22:35:31 +0300 Subject: [PATCH 7/8] TMP: change poetry args --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b8ddf3..2a35a2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,9 @@ jobs: run: | echo FOO which poetry - poetry run pytest tests -s -vv --release + poetry --help + + poetry --verbose run pytest tests -s -vv --release # poetry run pytest tests -s -vv --ssl From f39ccfc0017639653fe2d6811f5fb63e91a12060 Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Fri, 13 Jun 2025 22:38:55 +0300 Subject: [PATCH 8/8] TMP: more verbosity --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a35a2e..6dd3f85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: which poetry poetry --help - poetry --verbose run pytest tests -s -vv --release + poetry -vvv run pytest tests -s -vv --release # poetry run pytest tests -s -vv --ssl