forked from gitter-badger/hackedit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
26 lines (22 loc) · 780 Bytes
/
appveyor.yml
File metadata and controls
26 lines (22 loc) · 780 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
environment:
matrix:
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- python -c "import struct; print(struct.calcsize('P') * 8)"
- python -m pip install --upgrade pip setuptools
- pip install PyQt5 pytest pytest-qt
- pip install -e .
- python setup.py --quiet install_data
# install official plugins to improve coverage of integration tests
- pip install git+https://github.com/HackEdit/hackedit-python.git
- pip install git+https://github.com/HackEdit/hackedit-cobol.git
build: false # Not a C# project
test_script:
- py.test