From 564d7733258fa74bf58ccd67d0e857badd445d9e Mon Sep 17 00:00:00 2001 From: vinayakms221 Date: Thu, 8 Feb 2024 20:39:33 -0500 Subject: [PATCH] added pytest in config file --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e9a1631..1fde29d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,12 +14,12 @@ jobs: python -m pip install --upgrade pip pip install pdm pdm config python.use_venv true - pdm install + pdm install -d # Run tests with pytest - run: name: Run tests - command: pdm run pytest + command: pdm run pytest source/tests # Run Flake8 for linting - run: