Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-oracledb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ jobs:
CIBW_TEST_REQUIRES: pytest numpy pandas
CIBW_TEST_SOURCES: tests
# Upstream's suite needs a live Oracle Database, which has no riscv64 build.
# These five modules pass without one; test_1009 is the only test in them
# that opens a connection.
# These five modules pass without one; test_misc_1009 is the only test in
# them that opens a connection.
CIBW_TEST_COMMAND: >-
python -m pytest -k "not test_1009"
tests/test_1000_module.py tests/test_1500_types.py
tests/test_4500_connect_params.py tests/test_4700_pool_params.py
tests/test_7200_tnsnames.py
python -m pytest -k "not test_misc_1009"
tests/misc/test_1000_module.py tests/data_types/test_1200_types.py
tests/misc/test_1300_connect_params.py tests/misc/test_1400_pool_params.py
tests/misc/test_1500_tnsnames.py

- name: Check the extension modules made it into the wheel
run: |
Expand Down
1 change: 1 addition & 0 deletions docs/packages/oracledb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ versions:
- filename: oracledb-4.0.2-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
sha256: e444cddf873e61b151c0297b98fa7e2b934bbd73153f027e3e965435434b24da
requires-python: '>=3.9'
- version: 26.0.0
Loading