-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
.appveyor.yml
29 lines (28 loc) · 901 Bytes
/
.appveyor.yml
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
# We're not a C# project.
build: off
cache:
- "%LOCALAPPDATA%\\Yarn"
- "%LOCALAPPDATA%\\pip\\cache"
environment:
PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x" # currently 3.4.3
PYTHON_ARCH: "64"
GIT_LFS_SKIP_SMUDGE: "1"
install:
# Install Python (from the official .msi of http://python.org) and pip when
# not already installed.
- ps: if (-not(Test-Path($env:PYTHON))) { & appveyor\install.ps1 }
# Prepend newly installed Python to the PATH of this build (this cannot be
# done from inside the powershell script as it would require to restart
# the parent CMD process).
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- ps: Install-Product node 8
- python --version
- pip --version
- node --version
- yarn --version
#- pip install --disable-pip-version-check --user --upgrade pip
- pip install mitmproxy==4.0.1
- yarn install
test_script:
- yarn test