Skip to content

Commit

Permalink
Update to pact-ruby-standalone 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbalvanz-wf committed Jun 20, 2017
1 parent ab43c8b commit a9b991b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
8 changes: 2 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,8 @@ install: pip install -r requirements_dev.txt
script:
- flake8
- pydocstyle pact
- tox --develop
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then rvm install 2.2.2; fi
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then rvm use 2.2.2; fi
- ruby --version
- bundler --version
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then make package; fi
- tox
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then make package && pip install ./dist/pact-python-*.tar.gz && make e2e; fi

before_deploy:
- export RELEASE_PACKAGE=$(ls dist/pact-python-*.tar.gz)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ endef
export E2E
.PHONY: e2e
e2e:
sh -c "$$E2E"
bash -c "$$E2E"


.PHONY: package
Expand All @@ -62,7 +62,7 @@ package:


.PHONY: test
test: deps pact/bin
test: deps
flake8
pydocstyle pact
coverage erase
Expand Down
2 changes: 1 addition & 1 deletion pact/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@


__all__ = ('Consumer', 'EachLike', 'Pact', 'Provider', 'SomethingLike', 'Term')
__version__ = '0.5.0'
__version__ = '0.6.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


IS_64 = sys.maxsize > 2 ** 32
PACT_STANDALONE_VERSION = '0.0.1'
PACT_STANDALONE_VERSION = '1.0.0'


class PactPythonDevelopCommand(develop):
Expand Down

0 comments on commit a9b991b

Please sign in to comment.