File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+
3
+ notifications :
4
+ email :
5
+ recipients :
6
+
7
+ on_success : change # default: change
8
+ on_failure : always # default: always
9
+
10
+ language : python
11
+
12
+ dist : jammy
13
+
14
+ cache : pip
15
+
16
+ services :
17
+ - xvfb
18
+
19
+ python :
20
+ - " 3.12"
21
+
22
+ install :
23
+ - sudo apt update
24
+ - sudo apt install libnotify-dev
25
+ - sudo apt install libgtk-3-dev
26
+ - sudo apt-get install -y libsdl2-dev
27
+ - GLOBAL=`python --version`
28
+ - echo $GLOBAL
29
+ - PY_VERSION=${GLOBAL#* }
30
+ - pyenv global ${PY_VERSION}
31
+ - pip install --upgrade pip
32
+ - pip install wheel
33
+ - pip install setuptools
34
+ - pip install html-testRunner~=1.2.1
35
+ - pip install six==1.16.0
36
+ - pip install attrdict3
37
+ - pip install wxPython
38
+ - pip install buildlackey~=1.6.3
39
+ - pip install codeallybasic==1.7.0
40
+ - pip install codeallyadvanced==1.3.1
41
+ - pip install pyutmodelv2==2.1.5
42
+ - pip install untangle==1.2.1
43
+ - pip install ogl==3.5.0
44
+
45
+ # command to run tests
46
+ script :
47
+ - unittests -v loud
You can’t perform that action at this time.
0 commit comments