14 lines
346 B
YAML
14 lines
346 B
YAML
stages:
|
|
- test
|
|
|
|
run-test:
|
|
stage: test
|
|
script:
|
|
- rm -rf civenv-plugins
|
|
- virtualenv -p python3 --system-site-packages civenv-plugins
|
|
- . ./civenv-plugins/bin/activate
|
|
# - pip3 install -I pylint==2.4.4
|
|
# - python3 -m pylint acronyms_expander
|
|
# - python3 -m pylint anti_spam
|
|
- deactivate
|
|
- rm -rf civenv-plugins |