diff --git a/.circleci/config.yml b/.circleci/config.yml index 03d2a6b34..2a77baa8f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -563,28 +563,12 @@ jobs: - run: name: Install Dependencies command: | + python -m pip install --upgrade pip + python -m pip install -r requirements.txt pip install "pytest==7.3.1" pip install "pytest-retry==1.6.3" pip install "pytest-asyncio==0.21.1" - pip install aiohttp - pip install "openai==1.51.0" - python -m pip install -r requirements.txt - python -m pip install --upgrade pip - pip install "pydantic==2.7.1" - pip install "pytest==7.3.1" - pip install "pytest-mock==3.12.0" - pip install "pytest-asyncio==0.21.1" - pip install "boto3==1.34.34" - pip install mypy - pip install pyarrow - pip install numpydoc - pip install prisma - pip install fastapi - pip install jsonschema - pip install "httpx==0.24.1" - pip install "anyio==3.7.1" - pip install "asyncio==3.4.3" - pip install "PyGithub==1.59.1" + pip install "pytest-cov==5.0.0" - run: name: Build Docker image command: docker build -t my-app:latest -f ./docker/Dockerfile.database .