23 lines
289 B
YAML
23 lines
289 B
YAML
stages:
|
|
- test
|
|
- package
|
|
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
|
|
test_scraper:
|
|
stage: test
|
|
tags:
|
|
- python
|
|
script:
|
|
- cd src
|
|
- python3.7 -m scraper
|
|
|
|
|
|
build_package:
|
|
stage: package
|
|
tags:
|
|
- python
|
|
script:
|
|
- cd src
|
|
- python3.7 setup.py |