2 Star 0 Fork 0

mirrors_collective / collective.easyformplugin.createdx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.gitlab-ci.yml 1.88 KB
一键复制 编辑 原始数据 按行查看 历史
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/plone/tags/
image: python:2.7-stretch
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"
# Pip's cache doesn't store the python packages
# https://pip.pypa.io/en/stable/reference/pip_install/#caching
#
# If you want to also cache the installed packages, you have to install
# them in a virtualenv and cache it as well.
cache:
paths:
- .cache/pip
- venv/
- downloads/
- eggs/
# Set execution order: first run jobs on 'test' stage on parallel
# then run jobs on 'report' stage
stages:
- test
- report
before_script:
- echo "deb http://ftp.de.debian.org/debian/ stretch main contrib non-free" >> /etc/apt/sources.list
- apt-get update
- apt-get install -y firefoxdriver
- apt-get install -y xvfb
- python -V # Print out python version for debugging
- pip install virtualenv
- export LC_CTYPE=en_US.UTF-8
- export LC_ALL=en_US.UTF-8
- export LANG=en_US.UTF-8
- virtualenv --clear -p python2.7 venv
- source venv/bin/activate
- pip install -r requirements.txt
- buildout bootstrap
- bin/buildout -n -c buildout.cfg code-analysis:return-status-codes=True
code-analysis:
stage: test
# still not available, see: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5004
# success_with_warnings: True
script:
- bin/code-analysis
robot:
stage: test
script:
- export DISPLAY=:99.0
# - sh -e /etc/init.d/xvfb start
- xvfb-run bin/test --all
coverage:
stage: report
script:
- bin/createcoverage
- bin/coverage html
- bin/coverage report
when: on_success
coverage: '/TOTAL\s+\d+\s+\d+\s+(\d+\%)/'
artifacts:
paths:
- htmlcov
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_collective/collective.easyformplugin.createdx.git
git@gitee.com:mirrors_collective/collective.easyformplugin.createdx.git
mirrors_collective
collective.easyformplugin.createdx
collective.easyformplugin.createdx
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891