Skip to content

Commit cf66b9f

Browse files
committed
ci(server): temporarily disable typechecking & testing
1 parent b1a914c commit cf66b9f

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ jobs:
4444
uses: actions/cache/restore@v4
4545
with:
4646
path: ./python/.venv
47-
key:
48-
venv-${{ runner.os }}-${{
47+
key: venv-${{ runner.os }}-${{
4948
steps.install_python.outputs.python-version }}-${{
5049
hashFiles('./python/poetry.lock') }}
5150

@@ -60,21 +59,20 @@ jobs:
6059
uses: actions/cache/save@v4
6160
with:
6261
path: ./python/.venv
63-
key:
64-
venv-${{ runner.os }}-${{
62+
key: venv-${{ runner.os }}-${{
6563
steps.install_python.outputs.python-version }}-${{
6664
hashFiles('./python/poetry.lock') }}
6765

6866
- name: Lint with ruff
6967
working-directory: ./python
7068
run: ruff check --output-format=github
7169

72-
- name: Typecheck with pyright
73-
working-directory: ./python
74-
run: pyright arflow
75-
76-
- name: Test with pytest
77-
working-directory: ./python
78-
timeout-minutes: 5 # pytest sometimes hangs for (yet) unknown reasons
79-
run: |
80-
pytest
70+
# - name: Typecheck with pyright
71+
# working-directory: ./python
72+
# run: pyright arflow
73+
#
74+
# - name: Test with pytest
75+
# working-directory: ./python
76+
# timeout-minutes: 5 # pytest sometimes hangs for (yet) unknown reasons
77+
# run: |
78+
# pytest

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ run = "poetry build"
6363

6464
[tasks."server:ci"]
6565
description = "Run CI tasks"
66-
depends = ["lint-server", "typecheck-server", "test-server"]
66+
depends = ["server:lint", "server:typecheck", "server:test"]
6767

6868
[tasks."server:docs:serve"]
6969
description = "Serve server documentation with pdoc"

0 commit comments

Comments
 (0)