Skip to content

Commit 2800b11

Browse files
committed
Add pytest for Fabric2.x
Signed-off-by: Cristian Le <cristian.le@mpsd.mpg.de>
1 parent ff3c28c commit 2800b11

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/tests.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@ jobs:
1616
- uses: actions/setup-python@v4
1717
- uses: pre-commit/action@v3.0.0
1818

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+
1932
pytest:
2033
name: Run pytests
2134
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)