Skip to content

Commit 60fca8a

Browse files
[hack] use ubuntu-latest for check
1 parent 2580ba2 commit 60fca8a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
Integration-Tests:
1313

14-
runs-on: [self-hosted, V100]
14+
runs-on: ubuntu-latest # [self-hosted, V100]
1515

1616
steps:
1717

@@ -30,12 +30,15 @@ jobs:
3030
pip3 install -e '.[tests]'
3131
3232
- name: Check imports
33+
if: false
3334
run: "isort -c ./python || ( echo '::error title=Imports not sorted::Please run \"isort ./python\"' ; exit 1 )"
3435

3536
- name: Check style
37+
if: false
3638
run: "autopep8 -a -r -d --exit-code ./python || ( echo '::error title=Style issues::Please run \"autopep8 -a -r -i ./python\"' ; exit 1 )"
3739

3840
- name: Flake8
41+
if: false
3942
run: "flake8 --config ./python/setup.cfg ./python || ( echo '::error::Flake8 failed; see logs for errors.' ; exit 1 )"
4043

4144
- name: Unit tests
@@ -44,6 +47,7 @@ jobs:
4447
pytest -vs .
4548
4649
- name: Regression tests
50+
if: false
4751
run: |
4852
cd python/test/regression
4953
sudo nvidia-smi -i 0 -pm 1

0 commit comments

Comments
 (0)