Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Packages
signaturizer
Commits
4a2c6449
Commit
4a2c6449
authored
Jul 02, 2020
by
Martino Bertoni
🌋
Browse files
initial CI script
parent
e617fae1
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
4a2c6449
image
:
python:3.7
before_script
:
-
python --version
-
pip install -r requirements.txt
stages
:
-
test
unittest
:
stage
:
test
script
:
-
pwd
-
ls -l
-
export PYTHONPATH="$PYTHONPATH:."
-
python -c "import sys;print(sys.path)"
-
pytest
pypi_deploy
:
stage
:
deploy
cache
:
{}
script
:
-
pip install -U twine
-
python setup.py sdist
-
twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/*
only
:
-
master
\ No newline at end of file
Write
Preview
Markdown
is supported
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