Skip to content

Commit a9b991b

Browse files
Update to pact-ruby-standalone 1.0.0
1 parent ab43c8b commit a9b991b

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.travis.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ install: pip install -r requirements_dev.txt
1818
script:
1919
- flake8
2020
- pydocstyle pact
21-
- tox --develop
22-
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then rvm install 2.2.2; fi
23-
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then rvm use 2.2.2; fi
24-
- ruby --version
25-
- bundler --version
26-
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then make package; fi
21+
- tox
22+
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then make package && pip install ./dist/pact-python-*.tar.gz && make e2e; fi
2723

2824
before_deploy:
2925
- export RELEASE_PACKAGE=$(ls dist/pact-python-*.tar.gz)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ endef
5353
export E2E
5454
.PHONY: e2e
5555
e2e:
56-
sh -c "$$E2E"
56+
bash -c "$$E2E"
5757

5858

5959
.PHONY: package
@@ -62,7 +62,7 @@ package:
6262

6363

6464
.PHONY: test
65-
test: deps pact/bin
65+
test: deps
6666
flake8
6767
pydocstyle pact
6868
coverage erase

pact/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77

88
__all__ = ('Consumer', 'EachLike', 'Pact', 'Provider', 'SomethingLike', 'Term')
9-
__version__ = '0.5.0'
9+
__version__ = '0.6.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
IS_64 = sys.maxsize > 2 ** 32
18-
PACT_STANDALONE_VERSION = '0.0.1'
18+
PACT_STANDALONE_VERSION = '1.0.0'
1919

2020

2121
class PactPythonDevelopCommand(develop):

0 commit comments

Comments
 (0)