aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2020-12-30 18:08:39 +0100
committerGitHub <noreply@github.com>2020-12-30 18:08:39 +0100
commit286d064a61a83ff39a389f96be86966977458a52 (patch)
treead252dd22aba6afe37fe667bc9188f5262d03bb0 /.github
parentfbe43ad4dc8451fecba5318af97541283207a0e8 (diff)
downloadghdl-286d064a61a83ff39a389f96be86966977458a52.tar.gz
ghdl-286d064a61a83ff39a389f96be86966977458a52.tar.bz2
ghdl-286d064a61a83ff39a389f96be86966977458a52.zip
Executing Python unit tests in Parallel Processes (#1558)
* Prepare pyunit tests for parallel and independent execution with pytest/pytest-forked. * Added forked pytest test executions. * Added a pytest ini-file * Corrected pytest settings. * Adjusting PYTHONPATH. * Reverted changes required for pytest without modified file search patterns. (cherry picked from commit 0207b11cfef029f2ed765df3ad983ef47cc0838b) * Run pyunit tests without '--forked'. * Deactivate black. (cherry picked from commit d6b68588d4de26bf94181ea726be969cd09aadf0)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/push.yml32
1 files changed, 16 insertions, 16 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
index 55d1cc3e7..c7503450f 100644
--- a/.github/workflows/push.yml
+++ b/.github/workflows/push.yml
@@ -14,22 +14,22 @@ jobs:
# Format
#
- fmt:
- runs-on: ubuntu-latest
- name: '🐍 Format (black)'
- steps:
-
- - name: '🧰 Checkout'
- uses: actions/checkout@v2
-
- - name: '🐍 Setup Python'
- uses: actions/setup-python@v2
- with:
- python-version: 3.8
-
- - run: python -m pip install black
-
- - run: python -m black --check python
+# fmt:
+# runs-on: ubuntu-latest
+# name: '🐍 Format (black)'
+# steps:
+#
+# - name: '🧰 Checkout'
+# uses: actions/checkout@v2
+#
+# - name: '🐍 Setup Python'
+# uses: actions/setup-python@v2
+# with:
+# python-version: 3.8
+#
+# - run: python -m pip install black
+#
+# - run: python -m black --check python
#
# GPL