Skip to content

Commit

Permalink
Merge pull request #232 from hameerabbasi/pypy3-cibw
Browse files Browse the repository at this point in the history
Test PyPy3 on CIBuildWheel.
  • Loading branch information
hameerabbasi committed Mar 26, 2020
2 parents 91803c3 + ade409c commit 8b7fdce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 24 deletions.
16 changes: 5 additions & 11 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
variables:
CIBW_TEST_COMMAND: "pip install -r {project}/requirements/tests.txt && pytest --pyargs uarray"
CIBW_BUILD: cp3?-*
CIBW_SKIP: cp34-* cp27-*
CIBW_BUILD: cp3?-* pp3?-*

jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'Ubuntu-16.04'
steps:
- template: ci/azure-steps.yml
- job: MacOS
pool:
vmImage: 'macos-10.14'
vmImage: 'macOS-10.15'
steps:
- template: ci/azure-steps.yml
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- template: ci/azure-steps-windows.yml
- template: ci/azure-steps.yml
- job: Docs_Linting_Coverage
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'Ubuntu-16.04'
steps:
- template: ci/azure-doc-lint-cov.yml
- job: SciPy_FFT_Linux
Expand All @@ -34,11 +33,6 @@ jobs:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/azure-run-clang-format.yml
- job: pypy3
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/azure-pypy3.yml


trigger:
Expand Down
10 changes: 0 additions & 10 deletions ci/azure-steps-windows.yml

This file was deleted.

2 changes: 1 addition & 1 deletion ci/azure-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ steps:
- task: UsePythonVersion@0
- bash: |
python -m pip install --upgrade pip
pip install cibuildwheel==1.1.0
pip install cibuildwheel==1.3.0
cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}
4 changes: 2 additions & 2 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest>=3.5
pytest-flake8
pytest-cov
pytest-mypy
pytest-black; python_version >= '3.6'
pytest-mypy; platform_python_implementation == 'CPython'
pytest-black; python_version >= '3.6' and platform_python_implementation == 'CPython'

0 comments on commit 8b7fdce

Please sign in to comment.