Skip to content

Commit 9468a2c

Browse files
committed
[ci] Use GitHub's CI for Windows unit tests
1 parent 4b56264 commit 9468a2c

File tree

1 file changed

+36
-2
lines changed

1 file changed

+36
-2
lines changed

.github/workflows/continuous-integration.yml

+36-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ env:
2121

2222
jobs:
2323
build-linux:
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python-version: [3.8.14]
27+
python-version: [ 3.9.13 ]
2828
env:
2929
MESHROOM_NODES_PATH: '${{ github.workspace }}/../meshroomNodes/meshroom/nodes'
3030

@@ -53,3 +53,37 @@ jobs:
5353
- name: Test with pytest
5454
run: |
5555
pytest tests/
56+
57+
build-windows:
58+
runs-on: windows-latest
59+
strategy:
60+
matrix:
61+
python-version: [ 3.9.13 ]
62+
env:
63+
MESHROOM_NODES_PATH: '${{ github.workspace }}/../meshroomNodes/meshroom/nodes'
64+
65+
steps:
66+
- uses: actions/checkout@v3
67+
- name: Set up Python ${{ matrix.python-version }}
68+
uses: actions/setup-python@v4
69+
with:
70+
python-version: ${{ matrix.python-version }}
71+
- name: Clone meshroomNodes
72+
run: |
73+
cd ..
74+
git clone https://github.com/alicevision/meshroomNodes.git
75+
cd ${{ github.workspace }}
76+
- name: Install dependencies
77+
run: |
78+
python -m pip install --upgrade pip
79+
pip install flake8 pytest
80+
pip install -r requirements.txt -r dev_requirements.txt --timeout 45
81+
- name: Lint with flake8
82+
run: |
83+
# stop the build if there are Python syntax errors or undefined names
84+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
85+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
86+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
87+
- name: Test with pytest
88+
run: |
89+
pytest tests/

0 commit comments

Comments
 (0)