From 44845fb33e82167d2643752c957f592f1e5f978b Mon Sep 17 00:00:00 2001 From: konstin Date: Tue, 1 Oct 2024 16:54:44 +0200 Subject: [PATCH] Remove test-python task --- .github/workflows/test.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3c4b48..dbc66d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: test -on: [ push, pull_request ] +on: [push, pull_request] env: CARGO_TERM_COLOR: always @@ -29,20 +29,3 @@ jobs: - uses: actions/checkout@v4 - uses: Swatinem/rust-cache@v2 - run: cargo test - - test-python: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - - uses: Swatinem/rust-cache@v2 - - name: Install pytest - run: | - pip install --upgrade pip - pip install pytest - - uses: PyO3/maturin-action@v1 - with: - command: build - - name: Install pep440_rs - run: pip install --no-index --find-links target/wheels pep508_rs - - run: pytest