We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f55c1f9 commit ce821e9Copy full SHA for ce821e9
2 files changed
python/generate-api-client.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+mv test-requirements.txt test-requirements.txt.bak
4
+
5
# We assume OpenAPI Generator is installed using `npm i -g @openapitools/openapi-generator-cli`
6
openapi-generator generate -i MDES_Digital_Enablement.yaml -g python -o .
7
@@ -14,3 +16,5 @@ shopt -s extglob
14
16
cd test
15
17
rm -fv !(test_tokenize_api.py|__init__.py)
18
cd ..
19
20
+mv test-requirements.txt.bak test-requirements.txt
python/test-requirements.txt
@@ -1,3 +1,5 @@
pytest~=4.6.7 # needed for python 2.7+3.4
pytest-cov>=2.8.1
pytest-randomly==1.2.3 # needed for python 2.7+3.4
+mastercard-oauth1-signer >= 1.1.3
+mastercard-client-encryption >= 1.1.2
0 commit comments