Skip to content

Commit

Permalink
Merge pull request #362 from ethereum/fix_ci-2
Browse files Browse the repository at this point in the history
Fix CircleCI tox env
  • Loading branch information
CarlBeek authored May 16, 2023
2 parents c8610b6 + 26c390e commit 9ef2e23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ tox_common: &tox_common
steps:
- checkout
- restore_cache:
key: tox-deps3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
key: tox-deps4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
- run:
name: install dependencies
command: pip install --user tox
command: pip install tox
- run:
name: run tox
command: ~/.local/bin/tox
command: tox
- save_cache:
paths:
- .tox
- ./eggs
key: tox-deps3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
key: tox-deps4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}

orbs:
win: circleci/[email protected] # The Windows orb give you everything you need to start using the Windows executor.
Expand Down

0 comments on commit 9ef2e23

Please sign in to comment.