From f2e01d8ea67a6e47fbf199e5be47c17a362c797f Mon Sep 17 00:00:00 2001 From: anti Date: Tue, 28 Apr 2026 16:13:32 -0400 Subject: [PATCH] dev(ci): modified ci to not run fuzzing tests; done locally --- .gitea/workflows/ci.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7b214ebe..a14443e7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -91,27 +91,10 @@ jobs: DECNET_MYSQL_PASSWORD: root DECNET_MYSQL_DATABASE: decnet_test - test-fuzz: - name: Test (Fuzz) - runs-on: ubuntu-latest - needs: [test-live] - strategy: - matrix: - python-version: ["3.11"] - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - run: pip install -e .[dev] - - run: pytest -m fuzz - env: - SCHEMATHESIS_CONFIG: schemathesis.ci.toml - merge-to-testing: name: Merge dev → testing runs-on: ubuntu-latest - needs: [test-standard, test-live, test-fuzz] + needs: [test-standard, test-live] if: github.ref == 'refs/heads/dev' steps: - uses: actions/checkout@v4