Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/no color #10

Merged
merged 2 commits into from Feb 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -10,7 +10,7 @@ deploy:
provider: pypi
user: twindb
env:
- TOXENV=flake8
- TOXENV=lint
- TOXENV=cov
- TOXENV=py27
- TOXENV=py26
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Expand Up @@ -48,7 +48,7 @@ clean-test: clean-pyc ## remove test and coverage artifacts
rm -fr htmlcov/

lint: ## check style with flake8
tox -e flake8
pylint twindb_table_compare

vagrant-up:
cd vagrant && vagrant up
Expand Down Expand Up @@ -77,6 +77,8 @@ upgrade-requirements: ## Upgrade requirements
test: ## run tests quickly with the default Python
py.test -vx tests/unit/

test-functional: ## run functional tests
py.test -vx tests/functional/

test-all: ## run tests on every Python version with tox
tox
Expand All @@ -92,9 +94,8 @@ docs: ## generate Sphinx HTML documentation, including API docs
servedocs: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .

release: clean ## package and upload a release
python setup.py sdist upload
python setup.py bdist_wheel upload
coverage:
py.test --cov=twindb_table_compare --cov-report term-missing tests/unit

dist: clean ## builds source and wheel package
python setup.py sdist
Expand Down