We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3c28c commit 2800b11Copy full SHA for 2800b11
.github/workflows/tests.yaml
@@ -16,6 +16,19 @@ jobs:
16
- uses: actions/setup-python@v4
17
- uses: pre-commit/[email protected]
18
19
+ pytest-fabric2:
20
+ name: Test for Fabric 2.0 compatibility
21
+ runs-on: ubuntu-latest
22
+ needs: [ pre-commit ]
23
+ steps:
24
+ - uses: actions/checkout@v3
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v4
27
+ - name: Install Fabric 2.x and patchwork
28
+ run: pip install fabric==2 .[test]
29
+ - name: Test with pytest
30
+ run: pytest
31
+
32
pytest:
33
name: Run pytests
34
runs-on: ubuntu-latest
0 commit comments