From 33c03aa649aa2a0fb3cb94d5e084b63d220a971c Mon Sep 17 00:00:00 2001 From: qiang Date: Thu, 7 Nov 2024 16:11:03 +0800 Subject: [PATCH] fix --- .circleci/config.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d5d941e..3049816 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,6 @@ version: 2.1 orbs: node: circleci/node@5 - python: circleci/python@2 jobs: test-node: # Install node dependencies and run tests @@ -14,23 +13,7 @@ jobs: pkg-manager: npm - run: name: Run tests - command: npm test --passWithNoTests - test-python: - # Install dependencies and run tests - docker: - - image: cimg/python:3.11-node - working_directory: ~/project/test/monte-carlo - steps: - - checkout: - path: ~/project - - python/install-packages: - args: --dev - pkg-manager: pipenv - - run: - name: Run tests - command: pipenv run pytest --junitxml=junit.xml || ((($? == 5)) && echo 'Did not find any tests to run.') - - store_test_results: - path: junit.xml + command: npm run test deploy: # This is an example deploy job, not actually used by the workflow docker: @@ -47,7 +30,6 @@ workflows: build-and-test: jobs: - test-node - - test-python # - deploy: # requires: # - test-node