Skip to content

Commit

Permalink
Merge branch 'release/1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
akuzminsky committed Feb 22, 2017
2 parents 6014b9a + 53fae11 commit 2da8dc0
Show file tree
Hide file tree
Showing 16 changed files with 1,298 additions and 340 deletions.
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

0 comments on commit 2da8dc0

Please sign in to comment.