-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (30 loc) · 1011 Bytes
/
.travis.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
30
31
32
33
34
35
36
37
38
39
40
language: python
matrix:
include:
- os: windows
language: sh
python: "3.8"
before_install:
- choco install python3
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
- python -m ensurepip --upgrade
stages:
- stage: Windows_Server_Connection_Test
script: python -m unittest tests/test_server_connection.py
- stage: Windows_Main_Test_Suite
script: python -m unittest discover -s tests -v
- stage: Windows_Duplicate_Test_Suite
script: python -m unittest discover -s tests -v
- os: linux
python: "3.6"
stages:
- stage: Linux_Server_Connection_Test
script: python -m unittest tests/test_server_connection.py
- stage: Linux_Main_Test_Suite
script: python -m unittest discover -s tests -v
- stage: Linux_Duplicate_Test_Suite
script: python -m unittest discover -s tests -v
install:
- python setup.py install
before_script:
- python -m CostumePy.server &