Skip to content

Commit 4ce31a8

Browse files
committed
run flake8 test
1 parent b8dcf53 commit 4ce31a8

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.gitlab-ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ before_script:
1515
- virtualenv venv
1616
- source venv/bin/activate
1717

18-
test-run:
18+
test:
19+
script:
20+
- pip install tox flake8
21+
- tox -e py36,flake
22+
23+
run:
1924
script:
2025
- pip install . jupyter
2126
- jupyter nbconvert --to markdown --execute README.ipynb

multi_bary_plot/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from .GenBary import GenBary
2+
3+
__all__ = ['GenBary', ]

tox.ini

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# tox (https://tox.readthedocs.io/) is a tool for running tests
2-
# in multiple virtualenvs. This configuration file will run the
3-
# test suite on all supported python versions. To use it, "pip install tox"
4-
# and then run "tox" from this directory.
5-
61
[tox]
72
envlist = flake8
83

0 commit comments

Comments
 (0)