File tree Expand file tree Collapse file tree 6 files changed +192
-192
lines changed
Expand file tree Collapse file tree 6 files changed +192
-192
lines changed Original file line number Diff line number Diff line change 1- name : Ruff
2- on : [ push, pull_request ]
3- jobs :
4- ruff :
5- runs-on : ubuntu-latest
6- steps :
7- - uses : actions/checkout@v4
8- - uses : astral-sh/ruff-action@v1
1+ # name: Ruff
2+ # on: [ push, pull_request ]
3+ # jobs:
4+ # ruff:
5+ # runs-on: ubuntu-latest
6+ # steps:
7+ # - uses: actions/checkout@v4
8+ # - uses: astral-sh/ruff-action@v1
Original file line number Diff line number Diff line change 1- name : test inference
2-
3- on :
4- push :
5- branches :
6- - dev
7- # pull_request:
8- # branches:
9- # - dev
10-
11- jobs :
12- test :
13- runs-on : ${{ matrix.os }}
14- strategy :
15- fail-fast : false
16- matrix :
17- os : [ ubuntu-latest ]
18- python-version : [ "3.10", "3.11", "3.12" ]
19- include :
20- - os : windows-latest
21- python-version : " 3.10"
22-
23- steps :
24- - name : Checkout code
25- uses : actions/checkout@v4
26-
27- - name : Setup Python ${{ matrix.python-version }}
28- uses : actions/setup-python@v5
29- with :
30- python-version : ${{ matrix.python-version }}
31- cache : " pip"
32-
33- - name : Install dependencies
34- run : |
35- pip install .
36- pip install pytest pytest-asyncio
37-
38- - name : Run tests
39- run : |
40- pytest tests/pipeline/test_inference.py
1+ # name: test inference
2+ #
3+ # on:
4+ # push:
5+ # branches:
6+ # - dev
7+ # pull_request:
8+ # branches:
9+ # - dev
10+ #
11+ # jobs:
12+ # test:
13+ # runs-on: ${{ matrix.os }}
14+ # strategy:
15+ # fail-fast: false
16+ # matrix:
17+ # os: [ ubuntu-latest ]
18+ # python-version: [ "3.10", "3.11", "3.12" ]
19+ # include:
20+ # - os: windows-latest
21+ # python-version: "3.10"
22+ #
23+ # steps:
24+ # - name: Checkout code
25+ # uses: actions/checkout@v4
26+ #
27+ # - name: Setup Python ${{ matrix.python-version }}
28+ # uses: actions/setup-python@v5
29+ # with:
30+ # python-version: ${{ matrix.python-version }}
31+ # cache: "pip"
32+ #
33+ # - name: Install dependencies
34+ # run: |
35+ # pip install .
36+ # pip install pytest pytest-asyncio
37+ #
38+ # - name: Run tests
39+ # run: |
40+ # pytest tests/pipeline/test_inference.py
Original file line number Diff line number Diff line change 1- name : test nodes
2-
3- on :
4- push :
5- branches :
6- - dev
7- # pull_request:
8- # branches:
9- # - dev
10-
11- jobs :
12- test :
13- runs-on : ${{ matrix.os }}
14- strategy :
15- fail-fast : false
16- matrix :
17- os : [ ubuntu-latest ]
18- python-version : [ "3.10", "3.11", "3.12" ]
19- include :
20- - os : windows-latest
21- python-version : " 3.10"
22-
23- steps :
24- - name : Checkout code
25- uses : actions/checkout@v4
26-
27- - name : Setup Python ${{ matrix.python-version }}
28- uses : actions/setup-python@v5
29- with :
30- python-version : ${{ matrix.python-version }}
31- cache : " pip"
32-
33- - name : Install dependencies
34- run : |
35- pip install .
36- pip install pytest pytest-asyncio
37-
38- - name : Run tests
39- run : |
40- pytest tests/nodes
1+ # name: test nodes
2+ #
3+ # on:
4+ # push:
5+ # branches:
6+ # - dev
7+ # pull_request:
8+ # branches:
9+ # - dev
10+ #
11+ # jobs:
12+ # test:
13+ # runs-on: ${{ matrix.os }}
14+ # strategy:
15+ # fail-fast: false
16+ # matrix:
17+ # os: [ ubuntu-latest ]
18+ # python-version: [ "3.10", "3.11", "3.12" ]
19+ # include:
20+ # - os: windows-latest
21+ # python-version: "3.10"
22+ #
23+ # steps:
24+ # - name: Checkout code
25+ # uses: actions/checkout@v4
26+ #
27+ # - name: Setup Python ${{ matrix.python-version }}
28+ # uses: actions/setup-python@v5
29+ # with:
30+ # python-version: ${{ matrix.python-version }}
31+ # cache: "pip"
32+ #
33+ # - name: Install dependencies
34+ # run: |
35+ # pip install .
36+ # pip install pytest pytest-asyncio
37+ #
38+ # - name: Run tests
39+ # run: |
40+ # pytest tests/nodes
Original file line number Diff line number Diff line change 1- name : test optimization
2-
3- on :
4- push :
5- branches :
6- - dev
7- # pull_request:
8- # branches:
9- # - dev
10-
11- jobs :
12- test :
13- runs-on : ${{ matrix.os }}
14- strategy :
15- fail-fast : false
16- matrix :
17- os : [ ubuntu-latest ]
18- python-version : [ "3.10", "3.11", "3.12" ]
19- include :
20- - os : windows-latest
21- python-version : " 3.10"
22-
23- steps :
24- - name : Checkout code
25- uses : actions/checkout@v4
26-
27- - name : Setup Python ${{ matrix.python-version }}
28- uses : actions/setup-python@v5
29- with :
30- python-version : ${{ matrix.python-version }}
31- cache : " pip"
32-
33- - name : Install dependencies
34- run : |
35- pip install .
36- pip install pytest pytest-asyncio
37-
38- - name : Run tests
39- run : |
40- pytest tests/pipeline/test_optimization.py
1+ # name: test optimization
2+ #
3+ # on:
4+ # push:
5+ # branches:
6+ # - dev
7+ # pull_request:
8+ # branches:
9+ # - dev
10+ #
11+ # jobs:
12+ # test:
13+ # runs-on: ${{ matrix.os }}
14+ # strategy:
15+ # fail-fast: false
16+ # matrix:
17+ # os: [ ubuntu-latest ]
18+ # python-version: [ "3.10", "3.11", "3.12" ]
19+ # include:
20+ # - os: windows-latest
21+ # python-version: "3.10"
22+ #
23+ # steps:
24+ # - name: Checkout code
25+ # uses: actions/checkout@v4
26+ #
27+ # - name: Setup Python ${{ matrix.python-version }}
28+ # uses: actions/setup-python@v5
29+ # with:
30+ # python-version: ${{ matrix.python-version }}
31+ # cache: "pip"
32+ #
33+ # - name: Install dependencies
34+ # run: |
35+ # pip install .
36+ # pip install pytest pytest-asyncio
37+ #
38+ # - name: Run tests
39+ # run: |
40+ # pytest tests/pipeline/test_optimization.py
Original file line number Diff line number Diff line change 1- name : Typing
2- on : [ push, pull_request ]
3- jobs :
4- mypy :
5- runs-on : ubuntu-latest
6- steps :
7- - uses : actions/checkout@v4
8-
9- - uses : actions/setup-python@v5
10- with :
11- python-version : " 3.10"
12- cache : " pip"
13-
14- - name : Install Poetry
15- run : |
16- curl -sSL https://install.python-poetry.org | python3 -
17- echo "$HOME/.poetry/bin" >> $GITHUB_PATH
18-
19- - name : Install dependencies
20- run : |
21- poetry install --with typing
22-
23- - name : Run mypy
24- run : make typing
1+ # name: Typing
2+ # on: [ push, pull_request ]
3+ # jobs:
4+ # mypy:
5+ # runs-on: ubuntu-latest
6+ # steps:
7+ # - uses: actions/checkout@v4
8+ #
9+ # - uses: actions/setup-python@v5
10+ # with:
11+ # python-version: "3.10"
12+ # cache: "pip"
13+ #
14+ # - name: Install Poetry
15+ # run: |
16+ # curl -sSL https://install.python-poetry.org | python3 -
17+ # echo "$HOME/.poetry/bin" >> $GITHUB_PATH
18+ #
19+ # - name: Install dependencies
20+ # run: |
21+ # poetry install --with typing
22+ #
23+ # - name: Run mypy
24+ # run: make typing
Original file line number Diff line number Diff line change 1- name : unit tests
2-
3- on :
4- push :
5- branches :
6- - dev
7- # pull_request:
8- # branches:
9- # - dev
10-
11- jobs :
12- test :
13- runs-on : ${{ matrix.os }}
14- strategy :
15- fail-fast : false
16- matrix :
17- os : [ ubuntu-latest ]
18- python-version : [ "3.10", "3.11", "3.12" ]
19- include :
20- - os : windows-latest
21- python-version : " 3.10"
22-
23- steps :
24- - name : Checkout code
25- uses : actions/checkout@v4
26-
27- - name : Setup Python ${{ matrix.python-version }}
28- uses : actions/setup-python@v5
29- with :
30- python-version : ${{ matrix.python-version }}
31- cache : " pip"
32-
33- - name : Install dependencies
34- run : |
35- pip install .
36- pip install pytest pytest-asyncio
37-
38- - name : Run tests
39- run : |
40- pytest --ignore=tests/nodes --ignore=tests/pipeline
1+ # name: unit tests
2+ #
3+ # on:
4+ # push:
5+ # branches:
6+ # - dev
7+ # pull_request:
8+ # branches:
9+ # - dev
10+ #
11+ # jobs:
12+ # test:
13+ # runs-on: ${{ matrix.os }}
14+ # strategy:
15+ # fail-fast: false
16+ # matrix:
17+ # os: [ ubuntu-latest ]
18+ # python-version: [ "3.10", "3.11", "3.12" ]
19+ # include:
20+ # - os: windows-latest
21+ # python-version: "3.10"
22+ #
23+ # steps:
24+ # - name: Checkout code
25+ # uses: actions/checkout@v4
26+ #
27+ # - name: Setup Python ${{ matrix.python-version }}
28+ # uses: actions/setup-python@v5
29+ # with:
30+ # python-version: ${{ matrix.python-version }}
31+ # cache: "pip"
32+ #
33+ # - name: Install dependencies
34+ # run: |
35+ # pip install .
36+ # pip install pytest pytest-asyncio
37+ #
38+ # - name: Run tests
39+ # run: |
40+ # pytest --ignore=tests/nodes --ignore=tests/pipeline
You can’t perform that action at this time.
0 commit comments