mirror of https://github.com/nucypher/nucypher.git
Commenting out MyPy check for the moment. See #350.
parent
52721c77de
commit
72d0c8e978
|
@ -5,9 +5,9 @@ workflows:
|
||||||
test:
|
test:
|
||||||
jobs:
|
jobs:
|
||||||
- bundle_dependencies-36
|
- bundle_dependencies-36
|
||||||
- mypy_type_check:
|
# - mypy_type_check:
|
||||||
requires:
|
# requires:
|
||||||
- bundle_dependencies-36
|
# - bundle_dependencies-36
|
||||||
- eth_contract_unit:
|
- eth_contract_unit:
|
||||||
requires:
|
requires:
|
||||||
- bundle_dependencies-36
|
- bundle_dependencies-36
|
||||||
|
@ -140,19 +140,20 @@ jobs:
|
||||||
pipenv run pytest -v --runslow tests/blockchain/eth/contracts/integration --junitxml=./reports/pytest/results.xml
|
pipenv run pytest -v --runslow tests/blockchain/eth/contracts/integration --junitxml=./reports/pytest/results.xml
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: ./reports/pytest/
|
path: ./reports/pytest/
|
||||||
|
#
|
||||||
mypy_type_check:
|
# mypy_type_check:
|
||||||
<<: *python_36_base
|
# <<: *python_36_base
|
||||||
steps:
|
# steps:
|
||||||
- checkout
|
# - checkout
|
||||||
- restore_cache:
|
# - restore_cache:
|
||||||
key: v3-deps-{{ .Environment.CIRCLE_WORKFLOW_ID }}-{{ checksum "Pipfile" }}
|
# key: v3-deps-{{ .Environment.CIRCLE_WORKFLOW_ID }}-{{ checksum "Pipfile" }}
|
||||||
- run:
|
# - run:
|
||||||
name: Run Mypy Static Type Checks
|
# name: Run Mypy Static Type Checks
|
||||||
command: |
|
# command: |
|
||||||
mkdir ./mypy_reports ./mypy_results
|
# mkdir ./mypy_reports ./mypy_results
|
||||||
pipenv run mypy ./nucypher --config-file=mypy.ini --xslt-html-report ./mypy_reports/html/ --linecount-report ./mypy_reports/linecount --junit-xml ./mypy_results/results.xml
|
# export MYPYPATH=./nucypher
|
||||||
- store_artifacts:
|
# pipenv run mypy ./nucypher --config-file=mypy.ini --xslt-html-report ./mypy_reports/html/ --linecount-report ./mypy_reports/linecount --junit-xml ./mypy_results/results.xml
|
||||||
path: ./mypy_reports
|
# - store_artifacts:
|
||||||
- store_test_results:
|
# path: ./mypy_reports
|
||||||
path: ./mypy_results
|
# - store_test_results:
|
||||||
|
# path: ./mypy_results
|
||||||
|
|
Loading…
Reference in New Issue