webshop/.travis.yml

27 lines
886 B
YAML

language: python
python:
- "3.9"
arch: amd64
os: linux
dist: focal
virt: vm
cache: pip
services:
- docker
before_install:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com
install:
- pip3 install pylint bandit mccabe
before_script:
- find . -name "*.py" -exec python3 -m py_compile '{}' \;
- find . -name "*.py" -exec pylint '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- bandit -r --ini bandit.ini
script:
- docker build -t="registry.kmlabz.com/unstablevortex/webshop:$TRAVIS_BUILD_NUMBER" . && docker push "registry.kmlabz.com/unstablevortex/webshop:$TRAVIS_BUILD_NUMBER"
- docker build -t="registry.kmlabz.com/unstablevortex/webshop" . && docker push "registry.kmlabz.com/unstablevortex/webshop"