Skip to content

Commit

Permalink
Fix CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Jul 21, 2023
1 parent 4043d40 commit 7c6559a
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 13 deletions.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions .github/containers/firestore/docker-compose.yml

This file was deleted.

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build-ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
uses: docker/build-push-action@v3
with:
push: ${{ github.event_name != 'pull_request' }}
context: .github/containers/ci_image
context: .github/containers
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion tests/datastore_firestore/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
def client():
os.environ["FIRESTORE_EMULATOR_HOST"] = "%s:%d" % (FIRESTORE_HOST, FIRESTORE_PORT)
client = Client()
list(client.collections(retry=None)) # Ensure connection is available
client.collection("healthcheck").document("healthcheck").set({}, retry=None, timeout=5) # Ensure connection is available
return client


Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ envlist =
memcached-datastore_memcache-{py27,py37,py38,py39,py310,py311,pypy27,pypy38}-memcached01,
mysql-datastore_mysql-mysql080023-py27,
mysql-datastore_mysql-mysqllatest-{py37,py38,py39,py310,py311},
firestore-datastore_firestore-{py37,py38,py39,py310,py311,pypy38},
firestore-datastore_firestore-{py37,py38,py39,py310,py311},
postgres-datastore_postgresql-{py37,py38,py39},
postgres-datastore_psycopg2-{py27,py37,py38,py39,py310,py311}-psycopg2latest
postgres-datastore_psycopg2cffi-{py27,pypy27,py37,py38,py39,py310,py311}-psycopg2cffilatest,
Expand Down Expand Up @@ -419,7 +419,7 @@ commands =
allowlist_externals={toxinidir}/.github/scripts/*

install_command=
{toxinidir}/.github/scripts/retry.sh 3 pip install {opts} {packages}
pip install {opts} {packages}

extras =
agent_streaming: infinite-tracing
Expand Down

0 comments on commit 7c6559a

Please sign in to comment.