Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Update to CrateDB 5.5.0 #411

Merged
merged 2 commits into from
Nov 23, 2023
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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
matrix:
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
cratedb-version: ['4.8.4', '5.4.5']
cratedb-version: ['4.8.4', '5.5.0']
include:
- os: 'macos-latest'
python-version: '3.12'
cratedb-version: '5.4.5'
cratedb-version: '5.5.0'
- os: 'windows-latest'
python-version: '3.12'
cratedb-version: '5.4.5'
cratedb-version: '5.5.0'
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand All @@ -55,4 +55,4 @@ jobs:
python -m pip install ".[test,devel]"

- name: Lint & test
run: ./devtools/ci.sh
run: ./devtools/ci.sh
2 changes: 1 addition & 1 deletion DEVELOP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The tests are run using the `unittest`_ module::
In order to adjust the CrateDB version used for running the tests, amend the
environment variable ``CRATEDB_VERSION`` like::

export CRATEDB_VERSION=5.2.2
export CRATEDB_VERSION=5.5.0

If you install tox_, you can also run tests against multiple Python interpreters::

Expand Down
2 changes: 1 addition & 1 deletion devtools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e -x

isort --check --diff crate/ tests/ setup.py
flake8 crate/crash
coverage run -m unittest -v
coverage run -m unittest -v
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
if sys.platform != "linux":
raise SkipTest("Integration tests only supported on Linux")

crate_version = os.getenv("CRATEDB_VERSION", "5.4.5")
crate_version = os.getenv("CRATEDB_VERSION", "5.5.0")
crate_http_port = 44209
crate_transport_port = 44309
crate_settings = {
Expand Down