From ae537018b638600552b3ac11f1b070c048719910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bedn=C3=A1=C5=99?= Date: Wed, 16 Dec 2020 19:39:17 +0100 Subject: [PATCH] chore(ci): update default docker image to v2.0.3 (#179) --- .circleci/config.yml | 4 ++-- CHANGELOG.md | 5 ++++- scripts/influxdb-restart.sh | 2 +- tests/test_DeleteApi.py | 4 ---- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 69e7583a..ce944401 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,7 +49,7 @@ jobs: default: &default-python "circleci/python:3.6-buster" influxdb-image: type: string - default: "influxdb:v2.0.2" + default: "influxdb:v2.0.3" enabled-ciso-8601: type: boolean default: true @@ -136,7 +136,7 @@ workflows: enabled-ciso-8601: false - tests-python: name: test-3.6-influxdb-nightly - influxdb-image: "influx:nightly" + influxdb-image: "influxdb2:nightly" - tests-python: name: test-3.7 python-image: "circleci/python:3.7-buster" diff --git a/CHANGELOG.md b/CHANGELOG.md index 59bc895e..db72fe78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ ## 1.14.0 [unreleased] ### Features -1. [#176](https://github.com/influxdata/influxdb-client-python/pull/176): Allow providing proxy option to InfluxDBClient +1. [#176](https://github.com/influxdata/influxdb-client-python/pull/179): Allow providing proxy option to InfluxDBClient + +### CI +1. [#179](https://github.com/influxdata/influxdb-client-python/pull/179): Updated default docker image to v2.0.3 ## 1.13.0 [2020-12-04] diff --git a/scripts/influxdb-restart.sh b/scripts/influxdb-restart.sh index 713d018f..dd0cba6d 100755 --- a/scripts/influxdb-restart.sh +++ b/scripts/influxdb-restart.sh @@ -27,7 +27,7 @@ DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/" DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}" DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb" -DEFAULT_INFLUXDB_V2_VERSION="v2.0.2" +DEFAULT_INFLUXDB_V2_VERSION="v2.0.3" INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}" INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}" INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION} diff --git a/tests/test_DeleteApi.py b/tests/test_DeleteApi.py index e2d23b3d..479bdb80 100644 --- a/tests/test_DeleteApi.py +++ b/tests/test_DeleteApi.py @@ -1,12 +1,8 @@ -import pytest - from influxdb_client import PermissionResource, Permission, InfluxDBClient, Point from influxdb_client.client.write_api import SYNCHRONOUS from tests.base_test import BaseTest -# TODO https://github.com/influxdata/influxdb/issues/19545 -@pytest.mark.skip(reason="https://github.com/influxdata/influxdb/issues/19545") class DeleteApiTest(BaseTest): def setUp(self) -> None: