summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-08-12 23:53:17 -0400
committerengn33r <engn33r@users.noreply.github.com>2021-08-12 23:53:17 -0400
commitf3551963bf7b88e5ec7ecddabe64522fb094540c (patch)
treeef0696f7de6e51aafc498b7ae64f90f1353dcb24
parent8ff36f5a63ba844c7ebb3c1e9149746dbe9a9a6f (diff)
downloadwebsocket-client-f3551963bf7b88e5ec7ecddabe64522fb094540c.tar.gz
Add ampersand to background local server
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/codecoverage.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1073006..b52c2bb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,7 +21,7 @@ jobs:
- name: Run local websockets echo server on port 8765 (code is for Python 3.7+)
run: |
pip3 install -U websockets asyncio
- python3 websocket/tests/echo-server.py
+ python3 websocket/tests/echo-server.py &
- name: Build websocket-client & run tests
run: |
pip3 install -U pip setuptools wheel readme_renderer twine pytest python-socks
diff --git a/.github/workflows/codecoverage.yml b/.github/workflows/codecoverage.yml
index 39910ad..a36b206 100644
--- a/.github/workflows/codecoverage.yml
+++ b/.github/workflows/codecoverage.yml
@@ -15,7 +15,7 @@ jobs:
- name: Run local websockets echo server on port 8765
run: |
pip3 install -U websockets asyncio
- python3 websocket/tests/echo-server.py
+ python3 websocket/tests/echo-server.py &
- name: Run test cases without internet or option dependencies to verify no offline test failures and verify optional dependencies are optional
run: |
pip3 install coverage pytest pytest-cov setuptools