Skip to content

Commit dac18d2

Browse files
authored
chore: influxdb:2.0.0-rc is used as stable build; compatibility tests between beta and nightly (influxdata/influxdb#19636) (#159)
1 parent 8c7d312 commit dac18d2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
default: &default-python "circleci/python:3.6-buster"
5050
influxdb-image:
5151
type: string
52-
default: "influxdb:2.0.0-beta"
52+
default: "influxdb:2.0.0-rc"
5353
enabled-ciso-8601:
5454
type: boolean
5555
default: true

scripts/influxdb-restart.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
2727
DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"
2828

2929
DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
30-
DEFAULT_INFLUXDB_V2_VERSION="2.0.0-beta"
30+
DEFAULT_INFLUXDB_V2_VERSION="2.0.0-rc"
3131
INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
3232
INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
3333
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}

tests/test_DeleteApi.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
from influxdb_client.client.write_api import SYNCHRONOUS
1+
import pytest
22

3-
from influxdb_client import PermissionResource, Permission, InfluxDBClient, Point, WriteOptions
3+
from influxdb_client import PermissionResource, Permission, InfluxDBClient, Point
4+
from influxdb_client.client.write_api import SYNCHRONOUS
45
from tests.base_test import BaseTest
56

67

8+
# TODO https://github.com/influxdata/influxdb/issues/19545
9+
@pytest.mark.skip(reason="https://github.com/influxdata/influxdb/issues/19545")
710
class DeleteApiTest(BaseTest):
811

912
def setUp(self) -> None:

0 commit comments

Comments
 (0)