|
1 |
| -name: Integration Test |
| 1 | +# name: Integration Test |
2 | 2 |
|
3 |
| -on: |
4 |
| - pull_request: |
5 |
| - branches: [ main ] |
| 3 | +# on: |
| 4 | +# pull_request: |
| 5 | +# branches: [ main ] |
6 | 6 |
|
7 |
| - workflow_dispatch: |
| 7 | +# workflow_dispatch: |
8 | 8 |
|
9 |
| -jobs: |
10 |
| - build: |
| 9 | +# jobs: |
| 10 | +# build: |
11 | 11 |
|
12 |
| - runs-on: ubuntu-22.04 |
13 |
| - strategy: |
14 |
| - fail-fast: false |
15 |
| - matrix: |
16 |
| - python-version: [ 3.9 ] |
| 12 | +# runs-on: ubuntu-22.04 |
| 13 | +# strategy: |
| 14 | +# fail-fast: false |
| 15 | +# matrix: |
| 16 | +# python-version: [ 3.9 ] |
17 | 17 |
|
18 |
| - steps: |
19 |
| - - uses: actions/checkout@v2 |
20 |
| - - name: Set up Python ${{ matrix.python-version }} |
21 |
| - uses: actions/setup-python@v2 |
22 |
| - with: |
23 |
| - python-version: ${{ matrix.python-version }} |
24 |
| - - name: Install dependencies |
25 |
| - run: | |
26 |
| - sudo apt install -y -qq libavfilter-dev libavdevice-dev |
27 |
| - - name: Install packages |
28 |
| - run: | |
29 |
| - python -m pip install --quiet --upgrade pip |
30 |
| - python -m pip install --quiet --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html |
31 |
| - python -m pip install --quiet pytest requests cmake ninja deep-phonemizer sentencepiece flashlight-text git+https://github.com/kpu/kenlm |
32 |
| - python setup.py install |
33 |
| - - name: Run integration test |
34 |
| - run: | |
35 |
| - cd test && pytest integration_tests -v --use-tmp-hub-dir |
| 18 | +# steps: |
| 19 | +# - uses: actions/checkout@v2 |
| 20 | +# - name: Set up Python ${{ matrix.python-version }} |
| 21 | +# uses: actions/setup-python@v2 |
| 22 | +# with: |
| 23 | +# python-version: ${{ matrix.python-version }} |
| 24 | +# - name: Install dependencies |
| 25 | +# run: | |
| 26 | +# sudo apt install -y -qq libavfilter-dev libavdevice-dev |
| 27 | +# - name: Install packages |
| 28 | +# run: | |
| 29 | +# python -m pip install --quiet --upgrade pip |
| 30 | +# python -m pip install --quiet --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html |
| 31 | +# python -m pip install --quiet pytest requests cmake ninja deep-phonemizer sentencepiece flashlight-text git+https://github.com/kpu/kenlm |
| 32 | +# python setup.py install |
| 33 | +# - name: Run integration test |
| 34 | +# run: | |
| 35 | +# cd test && pytest integration_tests -v --use-tmp-hub-dir |
0 commit comments