remove testing on linux and windows
This commit is contained in:
parent
6aff15014b
commit
85756f7801
72
.github/workflows/main.yml
vendored
72
.github/workflows/main.yml
vendored
@ -49,40 +49,40 @@ jobs:
|
|||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test
|
run: make test
|
||||||
|
|
||||||
tests_mac:
|
# tests_mac:
|
||||||
needs: linter
|
# needs: linter
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
python-version: [3.9]
|
# python-version: [3.9]
|
||||||
os: [macos-latest]
|
# os: [macos-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
# runs-on: ${{ matrix.os }}
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
- uses: actions/setup-python@v4
|
# - uses: actions/setup-python@v4
|
||||||
with:
|
# with:
|
||||||
python-version: ${{ matrix.python-version }}
|
# python-version: ${{ matrix.python-version }}
|
||||||
- name: Install project
|
# - name: Install project
|
||||||
run: make install
|
# run: make install
|
||||||
- name: Run tests
|
# - name: Run tests
|
||||||
run: make test
|
# run: make test
|
||||||
|
|
||||||
tests_win:
|
# tests_win:
|
||||||
needs: linter
|
# needs: linter
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
python-version: [3.9]
|
# python-version: [3.9]
|
||||||
os: [windows-latest]
|
# os: [windows-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
# runs-on: ${{ matrix.os }}
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
- uses: actions/setup-python@v4
|
# - uses: actions/setup-python@v4
|
||||||
with:
|
# with:
|
||||||
python-version: ${{ matrix.python-version }}
|
# python-version: ${{ matrix.python-version }}
|
||||||
- name: Install Pip
|
# - name: Install Pip
|
||||||
run: pip install --user --upgrade pip
|
# run: pip install --user --upgrade pip
|
||||||
- name: Install project
|
# - name: Install project
|
||||||
run: pip install -e .[test]
|
# run: pip install -e .[test]
|
||||||
- name: run tests
|
# - name: run tests
|
||||||
run: pytest -s -vvvv -l --tb=long tests
|
# run: pytest -s -vvvv -l --tb=long tests
|
||||||
|
Loading…
Reference in New Issue
Block a user