We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212e029 commit 88fed72Copy full SHA for 88fed72
.github/workflows/json-schema.yml
.github/workflows/tests.yml
@@ -17,6 +17,9 @@ jobs:
17
with:
18
python-version: '3.11'
19
20
+ - name: Install Python dependencies
21
+ run: pip install jsonschema
22
+
23
- name: Run wallet validation tests
24
run: python tests/test_wallet_validation.py
25
@@ -30,4 +33,7 @@ jobs:
30
33
run: python scripts/proxy_urls.py
31
34
32
35
- name: Run wallet validation tests on proxy file
- run: WALLET_FILE=wallets-v2.proxy.json python tests/test_wallet_validation.py
36
+ run: WALLET_FILE=wallets-v2.proxy.json python tests/test_wallet_validation.py
37
38
+ - name: Run Json Schema validate test
39
+ run: python tests/test_jsonschema.py --wallets-file=wallets-v2.json --json-schema-file=wallets-v2.schema.json
0 commit comments