File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ concurrency:
11
11
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
12
cancel-in-progress : true
13
13
14
-
15
14
jobs :
16
15
build_and_test_rust :
17
16
runs-on : ${{ matrix.runner }}
@@ -87,15 +86,17 @@ jobs:
87
86
- uses : actions/setup-python@v5
88
87
with :
89
88
python-version : 3.12
90
- - name : Install Deps
89
+ - name : Install virtualenv
91
90
run : pip install virtualenv
92
91
- name : Python tests
93
92
run : |
94
- virtualenv venv && \
95
- source venv/bin/activate && \
93
+ virtualenv venv
94
+ source venv/bin/activate
96
95
pip install setuptools pytest pytest-asyncio "maturin[patchelf]" uniffi-bindgen
97
- maturin develop && \
98
- python -m pytest -vvv
96
+ maturin develop
97
+ # Test python/gossip_test.py often times out so run all other pytests first
98
+ pytest --ignore python/gossip_test.py
99
+ pytest -vvv python/gossip_test.py
99
100
100
101
build_and_test_swift :
101
102
name : Swift - Build and test
You can’t perform that action at this time.
0 commit comments