From c9581b7b896ca15feacd72615167d1e75f1039c9 Mon Sep 17 00:00:00 2001 From: Thomas Bury Date: Mon, 16 Sep 2024 16:27:24 +0200 Subject: [PATCH] ci: :green_heart: fix the circle ci config file --- .circleci/config.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d2d1eba..9bf63c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,25 +7,25 @@ jobs: build-and-test: parallelism: 4 docker: - - image: circleci/python:3.7.9 - environment: PYTHONPATH=./src - executor: python/default + - image: circleci/python:3.9 + environment: + PYTHONPATH: ./src steps: - - checkout - - run: - command: | - pip install --upgrade pip - pip install -r requirements-test.txt - name: Install Test requirements - - run: - command: pip install -e .[all] - name: Install Pacakge - - run: - command: pytest -k test_featselect - no_output_timeout: 10m - name: Test + - checkout + - run: + name: Install Test Requirements + command: | + pip install --upgrade pip + pip install -r requirements-test.txt + - run: + name: Install Package + command: pip install -e .[all] + - run: + name: Run Tests + command: pytest -k test_featselect + no_output_timeout: 10m workflows: main: jobs: - - build-and-test + - build-and-test