Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qzhodl committed Nov 7, 2024
1 parent 95d79bd commit 33c03aa
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -47,7 +30,6 @@ workflows:
build-and-test:
jobs:
- test-node
- test-python
# - deploy:
# requires:
# - test-node
Expand Down

0 comments on commit 33c03aa

Please sign in to comment.