We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be85352 commit 99cd5a1Copy full SHA for 99cd5a1
.github/workflows/tests.yml
@@ -1,11 +1,6 @@
1
name: Tests
2
-
3
on:
4
push:
5
- branches: [ "main", "feature/*" ]
6
- pull_request:
7
8
9
jobs:
10
backend-tests:
11
runs-on: ubuntu-latest
@@ -24,9 +19,11 @@ jobs:
24
19
pip install -r requirements.txt
25
20
pip install pytest pytest-mock
26
21
- name: Run tests
27
- run: |
28
- pytest tests/
29
22
+ run: pytest tests/
23
+ env:
+ RPC_URL: http://localhost:8332
+ RPC_USER: test
+ RPC_PASSWORD: test
30
frontend-tests:
31
32
defaults:
0 commit comments