Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
satella
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
satella
Commits
af86aa91
Unverified
Commit
af86aa91
authored
9 months ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
add extra unit tests
parent
8efbe30c
No related branches found
No related tags found
No related merge requests found
Pipeline
#61976
failed with stages
in 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+88
-0
88 additions, 0 deletions
.gitlab-ci.yml
with
88 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
88
−
0
View file @
af86aa91
stages
:
-
test
-
build
pages
:
image
:
zoo.smok.co/build/build:latest
stage
:
build
script
:
-
cd docs
-
make html
-
cd ..
-
mv docs/_build/html public
artifacts
:
paths
:
-
public
.test
:
stage
:
test
before_script
:
-
pip install --break-system-packages --upgrade Cython setuptools pip coverage nose2
-
pip install --break-system-packages -r requirements.txt
script
:
-
python setup.py install
-
cd example
-
python setup.py build_ext --inplace
-
nose2 -vv
test_python35
:
extends
:
.test
image
:
python:3.5
before_script
:
-
pip install --upgrade Cython setuptools pip coverage nose2
-
pip install -r requirements.txt
test_python36
:
extends
:
.test
image
:
python:3.6
before_script
:
-
pip install --upgrade Cython setuptools pip coverage nose2
-
pip install -r requirements.txt
test_python37
:
extends
:
.test
image
:
python:3.7
test_python38
:
extends
:
.test
image
:
python:3.8
test_python39
:
extends
:
.test
image
:
python:3.9
test_pypy310
:
extends
:
.test
image
:
pypy:3.10
test_pypy311
:
extends
:
.test
image
:
pypy:3.11
test_python310
:
extends
:
.test
image
:
python:3.10
test_python311
:
extends
:
.test
image
:
python:3.11
build_python
:
stage
:
build
before_script
:
-
pip install --break-system-packages --upgrade Cython setuptools pip twine
script
:
-
python setup.py bdist_wheel
-
mv dist/*.whl .
artifacts
:
paths
:
-
"
*.whl"
after_script
:
-
TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi *.whl
only
:
-
tags
except
:
-
branches
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment