Skip to content
This repository was archived by the owner on Apr 23, 2022. It is now read-only.

Commit 125068f

Browse files
author
Julien Maupetit
committed
Add first draft gitlab-ci configuration
1 parent 264d2c5 commit 125068f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.gitlab-ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
image: tailordev/pandas
2+
3+
# This folder is cached between builds
4+
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
5+
cache:
6+
paths:
7+
- ~/.cache/pip/
8+
9+
# Install the project and dependencies
10+
before_script:
11+
# Print out python version for debugging
12+
- python -V
13+
- pip install -r requirements-dev.txt
14+
- python setup.py install
15+
16+
stages:
17+
- lint
18+
- test
19+
20+
flake8:
21+
stage: lint
22+
script:
23+
flake8
24+
25+
test climate:
26+
stage: test
27+
script:
28+
pytest

0 commit comments

Comments
 (0)