build: Do not run `test-python-sdist`

As it is tested in the `Release` job
This commit is contained in:
Dmitry Dygalo 2023-02-01 00:26:57 +01:00
parent 164f208a8a
commit d0bacfb692
No known key found for this signature in database
GPG Key ID: AE7D12BE93BD417F
1 changed files with 0 additions and 27 deletions

View File

@ -171,33 +171,6 @@ jobs:
run: tox -e py
working-directory: ./bindings/python
test-python-sdist:
runs-on: ubuntu-20.04
name: Testing Python source code distribution
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: '3.8'
architecture: x64
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: python -m pip install maturin
working-directory: ./bindings/python
- run: maturin sdist -o dist
working-directory: ./bindings/python
- name: Installing sdist
run: pip install dist/*
working-directory: ./bindings/python
fmt:
name: Rustfmt
runs-on: ubuntu-20.04