erc20-faucet

ERC20 token faucet
Log | Files | Refs

commit 96ca158c2681ee6fece0d7c41731d99e3eda16e8
parent 3e6ca98be9f754d521d6cff0f36a93c213cc5291
Author: Blair Vanderlugt <blair.vanderlugt@gmail.com>
Date:   Sun, 20 Feb 2022 19:47:10 +0000

Merge branch 'Ida/ci-test' into 'master'

Adding coverage and slither analysis

See merge request cicnet/erc20-faucet!2
Diffstat:
A.gitlab-ci.yml | 60++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Apython/.coverage | 0
Apython/.coveragerc | 6++++++
3 files changed, 66 insertions(+), 0 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -0,0 +1,60 @@ +stages: + - test + - run-coverage + - slither-analyzer + + +variables: + PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" + +cache: + paths: + - .cache/pip + - .venv/ + +before_script: + - python -V # Print out python version for debugging + - pip install virtualenv + - virtualenv venv + - source venv/bin/activate + +test: + image: registry.gitlab.com/grassrootseconomics/cic-base-images/ci-solc-python:latest + script: + # install test dependencies + - cd python + - export PYTHONPATH=. + - pip install --extra-index-url https://pip.grassrootseconomics.net + --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple + -r requirements.txt -r test_requirements.txt + # run tests + - bash run_tests.sh + +run-coverage: + stage: test + image: registry.gitlab.com/grassrootseconomics/cic-base-images/ci-solc-python:latest + script: + - cd python + - export PYTHONPATH=. + - pip install --extra-index-url https://pip.grassrootseconomics.net + --extra-index-url https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple + -r requirements.txt -r test_requirements.txt + - pip install pytest pytest-cov + - coverage run -m pytest + - coverage html + - coverage report --fail-under=90 + + coverage: '/^TOTAL.+?(\d+\%)$/' + artifacts: + reports: + cobertura: python/htmlcov/index.html + +slither-analyzer: + image: registry.gitlab.com/grassrootseconomics/cic-base-images/ci-solc-python:latest + allow_failure: true + script: + - cd solidity + - slither ERC20Faucet.sol + - slither ERC20Faucet.sol --print human-summary + - slither ERC20FaucetStorage.sol + - slither ERC20FaucetStorage.sol --print human-summary diff --git a/python/.coverage b/python/.coverage Binary files differ. diff --git a/python/.coveragerc b/python/.coveragerc @@ -0,0 +1,6 @@ +[run] +branch = True +[report] +omit = .venv/* + **/runnable/*.py +[html]