Skip to content

Commit 009e76d

Browse files
committed
Added .travis.yml for TravisCI
1 parent 4ee3a86 commit 009e76d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: python
2+
python:
3+
- "3.9"
4+
install:
5+
- pip install -r requirements_ci.txt
6+
script:
7+
- python -m compileall wmectrl
8+
- python -m pycodestyle wmectrl
9+
- python -m flake8 wmectrl
10+
- python -m build --outdir=dist .
11+
- python -m pip install --verbose dist/*.whl
12+
- python -m pip list
13+
- python -m pip freeze
14+
- wmectrl --help
15+
- wmectrl --version
16+
- ls -laR .
17+
- python -m pip uninstall --yes --verbose wmectrl

0 commit comments

Comments
 (0)