fix: remove operating systems from e2e_tests
This commit is contained in:
parent
4198ee0d8b
commit
72a6a2a9d0
1 changed files with 4 additions and 17 deletions
21
.github/workflows/e2e_tests.yml
vendored
21
.github/workflows/e2e_tests.yml
vendored
|
|
@ -13,10 +13,6 @@ on:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: '["3.10.x", "3.12.x", "3.13.x"]'
|
default: '["3.10.x", "3.12.x", "3.13.x"]'
|
||||||
supported-operating-systems:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
default: '["ubuntu-22.04", "macos-15", "windows-latest"]'
|
|
||||||
secrets:
|
secrets:
|
||||||
LLM_MODEL:
|
LLM_MODEL:
|
||||||
required: true
|
required: true
|
||||||
|
|
@ -276,12 +272,11 @@ jobs:
|
||||||
run: uv run python ./cognee/tests/test_delete_permission.py
|
run: uv run python ./cognee/tests/test_delete_permission.py
|
||||||
|
|
||||||
test-deletion-on-default-graph:
|
test-deletion-on-default-graph:
|
||||||
name: Delete default graph data test ${{ matrix.python-version }} on ${{ matrix.os }}
|
name: Delete default graph data test ${{ matrix.python-version }} on ubuntu-22.04
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ${{ fromJSON(inputs.supported-python-versions) }}
|
python-version: ${{ fromJSON(inputs.supported-python-versions) }}
|
||||||
os: ${{ fromJSON(inputs.supported-operating-systems) }}
|
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Check out
|
- name: Check out
|
||||||
|
|
@ -294,13 +289,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Path setup
|
|
||||||
if: ${{ matrix.os }} == 'windows-latest'
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
PATH=$(printf '%s' "$PATH" | tr ':' $'\n' | grep -vi '/git/usr/bin' | paste -sd: -)
|
|
||||||
export PATH
|
|
||||||
|
|
||||||
- name: Run deletion on default graph
|
- name: Run deletion on default graph
|
||||||
env:
|
env:
|
||||||
ENV: 'dev'
|
ENV: 'dev'
|
||||||
|
|
@ -315,12 +303,11 @@ jobs:
|
||||||
run: uv run python ./cognee/tests/test_delete_default_graph.py
|
run: uv run python ./cognee/tests/test_delete_default_graph.py
|
||||||
|
|
||||||
test-deletion-on-custom-graph:
|
test-deletion-on-custom-graph:
|
||||||
name: Delete custom graph data test ${{ matrix.python-version }} on ${{ matrix.os }}
|
name: Delete custom graph data test ${{ matrix.python-version }} on ubuntu-22.04
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ${{ fromJSON(inputs.supported-python-versions) }}
|
python-version: ${{ fromJSON(inputs.supported-python-versions) }}
|
||||||
os: ${{ fromJSON(inputs.supported-operating-systems) }}
|
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Check out
|
- name: Check out
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue