From a0daf5adff5252779401901fdff539804bc7750c Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 23 Jun 2024 17:44:34 +0200 Subject: [PATCH] Enable CircleCI --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 951ab8bc..e44ddb3b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,8 +32,10 @@ jobs: name: install dependencies command: | python -m pip install --upgrade pip - pip install pytest # -r requirements.txt pipx install pre-commit ruff + python3 -m venv venv + . venv/bin/activate + pip install pytest # -r requirements.txt # python3 -m venv venv # . venv/bin/activate # pip install --upgrade pip