Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
William Clarke
pymapVBVD
Commits
d4a90d0d
Commit
d4a90d0d
authored
Sep 23, 2020
by
Mo Shahdloo
Browse files
Merge remote-tracking branch 'origin/master'
parents
7f10fc5a
2717cc49
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
deleted
100644 → 0
View file @
7f10fc5a
# 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/python/tags/
image
:
python:latest
# 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"
# 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/
before_script
:
-
python -V
# Print out python version for debugging
-
pip install virtualenv
-
virtualenv venv
-
source venv/bin/activate
-
pip install -r requirements.txt
# different stages in the pipeline
stages
:
-
Test
pytest
:
stage
:
Test
script
:
-
cd test/;pytest -v
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment