-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
59 lines (56 loc) · 2.37 KB
/
.travis.yml
File metadata and controls
59 lines (56 loc) · 2.37 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
matrix:
include:
- language: python
python:
- "3.6"
# command to install dependencies
install:
# - pip install -r requirements.txt
# command to run tests
script:
# - pytest
- cd Python
- python -m unittest run_tests.py
- language: csharp
mono: none
dotnet: 2.0.3
install:
# - pip install -r requirements.txt
# command to run tests
script:
- cd CSharp
- dotnet restore
- cd DP.UnitTest
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtAdapter"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtBridge"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtBuilder"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtChainOfResposibility"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtCommand"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtComposite"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtDecorator"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtFacade"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtFactory"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtFlyweight"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtInterpreter"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtIterator"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtMediator"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtMemento"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtObserver"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtPrototype"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtProxy"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtSingleton"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtState"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtStrategy"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtTemplate"
- dotnet test --filter "FullyQualifiedName~DP.UnitTest.UtVisitor"
# language: python
# python:
# - "3.6"
# # command to install dependencies
# install:
# # - pip install -r requirements.txt
# # command to run tests
# script:
# # - pytest
# - cd Python
# - python -m unittest run_tests.py