Skip to content

Commit

Permalink
circle: hopefully final bug fix for datastore => firestore emulator
Browse files Browse the repository at this point in the history
  • Loading branch information
snarfed committed Apr 17, 2024
1 parent 09eb49c commit 9e45e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
pip install -U -r requirements.txt
pip install coverage coveralls
gcloud components install --quiet cloud-firestore-emulator
sudo apt-get install google-cloud-cli-firestore-emulator
- run:
name: Run tests
command: |
CLOUDSDK_CORE_PROJECT=brid-gy gcloud emulators firestore start --host-port=:8089 --database-mode=datastore-mode < /dev/null >& /tmp/firestore-emulator.log &
gcloud emulators firestore start --host-port=:8089 --database-mode=datastore-mode < /dev/null >& /tmp/firestore-emulator.log &
sleep 5s
python3 -m coverage run --include=oauth_dropins/webutil/handlers.py,oauth_dropins/webutil/models.py,oauth_dropins/webutil/util.py -m unittest discover -v -p 'test_*.py'
kill %1
Expand Down

0 comments on commit 9e45e10

Please sign in to comment.