We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a51ae commit 6a4b127Copy full SHA for 6a4b127
.travis.yml
@@ -0,0 +1,25 @@
1
+os: linux
2
+dist: jammy
3
+language: python
4
+python:
5
+ - "3.10"
6
+virtualenv:
7
+ system_site_packages: true
8
+addons:
9
+ apt:
10
+ packages:
11
+ # Dependencies for installation
12
+ - gettext # msgfmt
13
+ # Dependencies for execution
14
+ - python3-gi # GObject
15
+ - libgirepository1.0-dev # GObject
16
+ - gir1.2-gtk-3.0 # gi.repository.Gtk
17
+install:
18
+ - pip install -r requirements_ci.txt
19
+services:
20
+ - xvfb
21
+script:
22
+ - python -m compileall .
23
+ - python -m flake8 .
24
+ - python setup.py install --optimize=1 --root=build
25
+ - ls -laR build
0 commit comments