forked from googleapis/python-ndb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
33 lines (23 loc) · 685 Bytes
/
.appveyor.yml
File metadata and controls
33 lines (23 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: 1.0.{build}.{branch}
build: off
matrix:
fast_finish: true
# We always use a 64-bit machine, but can build x86 distributions
# with the PYTHON_ARCH variable.
platform:
- x64
environment:
matrix:
# See: https://www.appveyor.com/docs/windows-images-software/#python
- NOX_SESSION: "unit-3.6"
- NOX_SESSION: "unit-3.7"
- NOX_SESSION: "docs"
- NOX_SESSION: "doctest"
install:
# Packaging requirements
- py -3.7 -m pip install --upgrade pip setuptools
- py -3.7 -m pip install --upgrade wheel
# Install the build dependencies of the project.
- py -3.7 -m pip install --upgrade nox
test_script:
- "py -3.7 -m nox -s \"%NOX_SESSION%\""