Skip to content

Commit

Permalink
Update CircleCI configuration to only run pytest with pymongo 4, drop…
Browse files Browse the repository at this point in the history
… pytest_pymongo4
  • Loading branch information
janosh committed Apr 8, 2024
1 parent 403a3f9 commit 41a2d2f
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,35 +26,7 @@ jobs:
pip install .[workflow-checks,graph-plotting,flask-plotting]
pytest fireworks
pytest_pymongo4:
working_directory: ~/fireworks
docker:
- image: continuumio/miniconda3:4.6.14
- image: circleci/mongo:latest
steps:
- checkout
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda info -a
conda create -q -n test-environment python=3.8
source activate test-environment
conda update --quiet --all
pip install --quiet --ignore-installed -r requirements.txt -r requirements-ci.txt
- run:
name: Run fireworks tests
command: |
export PATH=$HOME/miniconda3/bin:$PATH
source activate test-environment
pip install --quiet -e .
pip install --quiet --upgrade pymongo
pytest fireworks
workflows:
version: 2
build_and_test:
jobs:
- pytest
- pytest_pymongo4
jobs: [pytest]

0 comments on commit 41a2d2f

Please sign in to comment.