File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,15 @@ jobs:
31
31
sudo apt-get install -y mailutils ruby ruby-dev rubygems build-essential sudo gnupg python3-gpg
32
32
sudo gem install --no-document fpm
33
33
python -m pip install --upgrade pip setuptools wheel
34
- python -m pip install --upgrade tox
34
+ python -m pip install --upgrade mock pycodestyle pytest pytest-cov
35
35
- name : Build deb package
36
36
run : ./fpm/create
37
37
- name : End to end test using deb package
38
38
run : sudo bash -ex ./tests/e2e.sh
39
- - name : Test with tox
40
- run : tox
39
+ - name : Lint with pycodestyle
40
+ run : pycodestyle --show-pep8 --max-line-length=100
41
+ - name : Test with pytest
42
+ run : python -m pytest --cov=zeyple/ --cov-report=html --import-mode=importlib
41
43
- name : Upload deb package
42
44
uses : actions/upload-artifact@v1
43
45
with :
You can’t perform that action at this time.
0 commit comments