diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9e9f11e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: python +python: + - "3.6" +install: + - pip install -e . +script: + - pytest diff --git a/setup.py b/setup.py index 96106f5..3891d20 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,8 @@ install_requires=[ 'pytest>=3.0,<4', 'pydocstyle>=2.1,<2.2', + 'pytest-codestyle>=1.0,<2.0', + 'pytest-isort>=0.1,<1.0', ], # https://docs.pytest.org/en/latest/writing_plugins.html#making-your-plugin-installable-by-others entry_points={