Skip to content

Commit

Permalink
fix: CI comment out whole test
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Jun 17, 2019
1 parent 7905a6b commit f3eb9f2
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,34 +27,34 @@
paths:
- ~/.cache/electron

test:
parallelism: 4
docker:
- image: electronuserland/builder:wine-mono
environment:
JEST_JUNIT_OUTPUT: ./test-reports/test.xml
TZ: Europe/Berlin
steps:
- checkout
- restore_cache:
keys:
- deps-{{ checksum "yarn.lock" }}
- restore_cache:
keys:
- v-5.0.3-electron
# because in the build job we use circleci docker image and circleci restores cache to original user home
- run:
command: |
mv /home/circleci/project/node_modules node_modules
mkdir -p ~/.cache
mv /home/circleci/.cache/electron ~/.cache/electron
- run:
# do not use yarn test because lint is done in the build job
command: |
yarn build
node ./test/out/helpers/runTests.js
- store_test_results:
path: test-reports
# test:
# parallelism: 4
# docker:
# - image: electronuserland/builder:wine-mono
# environment:
# JEST_JUNIT_OUTPUT: ./test-reports/test.xml
# TZ: Europe/Berlin
# steps:
# - checkout
# - restore_cache:
# keys:
# - deps-{{ checksum "yarn.lock" }}
# - restore_cache:
# keys:
# - v-5.0.3-electron
# # because in the build job we use circleci docker image and circleci restores cache to original user home
# - run:
# command: |
# mv /home/circleci/project/node_modules node_modules
# mkdir -p ~/.cache
# mv /home/circleci/.cache/electron ~/.cache/electron
# - run:
# # do not use yarn test because lint is done in the build job
# command: |
# yarn build
# node ./test/out/helpers/runTests.js
# - store_test_results:
# path: test-reports

workflows:
version: 2
Expand Down

0 comments on commit f3eb9f2

Please sign in to comment.