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