From e82a0ccd014013c7f5973ff0392a1a60093d57b6 Mon Sep 17 00:00:00 2001 From: comrumino Date: Sun, 19 Mar 2023 15:44:26 -0500 Subject: [PATCH] Expaned GH action steps to test for bind threads --- .github/workflows/python-app.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index d5ba0bb4..005160cc 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -46,6 +46,9 @@ jobs: ssh-keygen -q -f ~/.ssh/id_rsa -N '' cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys uname -a - - name: Test with unittest + - name: Bind threads tests with unittest run: | - python -m unittest discover -v -s ./rpyc ./tests + RPYC_BIND_THREADS="true" python -m unittest discover -v + - name: Default tests with unittest + run: | + python -m unittest discover -v