add travis config

This commit is contained in:
Torma Kristóf 2020-11-27 04:30:44 +01:00
parent a194b60077
commit 8c75b3a01e
3 changed files with 26 additions and 14 deletions

24
.travis.yml Normal file
View File

@ -0,0 +1,24 @@
language: python
arch: arm64
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 .
script:
- docker build -t="registry.kmlabz.com/$TRAVIS_REPO_SLUG:$TRAVIS_BUILD_NUMBER" . && docker push "registry.kmlabz.com/$TRAVIS_REPO_SLUG:$TRAVIS_BUILD_NUMBER"
- docker build -t="registry.kmlabz.com/$TRAVIS_REPO_SLUG" . && docker push "registry.kmlabz.com/$TRAVIS_REPO_SLUG"

View File

@ -1,2 +1,4 @@
# webshop
Webshop Application
[![Build Status](https://travis-ci.com/UnstableVortexSecurity/webshop.svg?branch=main)](https://travis-ci.com/UnstableVortexSecurity/webshop)

View File

@ -1,14 +0,0 @@
#!/usr/bin/env python3
from flask_marshmallow import Marshmallow
"""
Marshmallow
"""
__author__ = '@tormakris'
__copyright__ = "Copyright 2020, UnstableVortex Team"
__module_name__ = "marshm"
__version__text__ = "1"
ma = Marshmallow()