Skip to content

Commit 546a5bb

Browse files
committed
upd ci
1 parent 583a88f commit 546a5bb

File tree

6 files changed

+192
-192
lines changed

6 files changed

+192
-192
lines changed

.github/workflows/ruff.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
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

.github/workflows/test-nodes.yaml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
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
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
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

.github/workflows/typing.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
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

.github/workflows/unit-tests.yaml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
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

0 commit comments

Comments
 (0)