36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
environment:
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
|
|
APPVEYOR_JOB_NAME: "python38-x64-ubuntu"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
APPVEYOR_JOB_NAME: "python38-x64-vs2015"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: macos
|
|
APPVEYOR_JOB_NAME: "python38-x64-macos"
|
|
|
|
stack: python 3.8
|
|
|
|
build: off
|
|
|
|
init:
|
|
- cmd: set PATH=C:\Python38;C:\Python38\Scripts;%PATH%
|
|
- ps: |
|
|
$BRANCH = if ($env:APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH) { $env:APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH } else { $env:APPVEYOR_REPO_BRANCH }
|
|
if (-not ($BRANCH -eq 'main' -or $BRANCH.ToLower().StartsWith('appveyor-'))) {
|
|
$env:PYTEST_ADDOPTS='-k "unit_test or test_0_basic" --suppress-no-test-exit-code'
|
|
}
|
|
python -m pip install -U pip
|
|
|
|
install: python -m pip install -e ".[dev]" pytest-custom-exit-code
|
|
|
|
# the '-u' flag is required so the output is in the correct order.
|
|
# See https://github.com/pypa/cibuildwheel/pull/24 for more info.
|
|
test_script: python -u ./bin/run_tests.py
|
|
|
|
branches:
|
|
only:
|
|
- main
|
|
|
|
skip_commits:
|
|
files:
|
|
- docs/*
|