Skip to content

Commit

Permalink
Merge branch 'master' into anoncreds-1.0-rev-aries
Browse files Browse the repository at this point in the history
  • Loading branch information
jovfer authored May 8, 2020
2 parents 7bdc3cf + af2c2a3 commit 8035f3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile.cd
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ def linuxVcxPythonTesting(env_name, network_name, testEnv) {
echo "${env_name} Vcx Test: Test python wrapper"

sh '''
python3 -m pip install --user pytest==3.6.4 pytest-asyncio
python3 -m pip install --user pytest==3.6.4 pytest-asyncio==0.10.0
LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} python3 -m pytest -s
'''
}
Expand Down Expand Up @@ -1944,4 +1944,4 @@ List<List<?>> mapToList(Map map) {
return map.collect { it ->
[it.key, it.value]
}
}
}
4 changes: 2 additions & 2 deletions Jenkinsfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ def linuxVcxPythonTesting(env_name, network_name, testEnv) {
echo "${env_name} Vcx Test: Test python wrapper"

sh '''
python3 -m pip install --user pytest==3.6.4 pytest-asyncio
python3 -m pip install --user pytest==3.6.4 pytest-asyncio==0.10.0
LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} python3 -m pytest -s
'''
}
Expand Down Expand Up @@ -880,4 +880,4 @@ List<List<?>> mapToList(Map map) {
return map.collect { it ->
[it.key, it.value]
}
}
}
2 changes: 1 addition & 1 deletion wrappers/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
PKG_VERSION = os.environ.get('PACKAGE_VERSION') or '1.15.0'

TEST_DEPS = [
'pytest<3.7', 'pytest-asyncio', 'base58'
'pytest<3.7', 'pytest-asyncio==0.10.0', 'base58'
]

setup(
Expand Down

0 comments on commit 8035f3b

Please sign in to comment.