Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
raven
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
raven
Commits
a8df683c
Commit
a8df683c
authored
2 years ago
by
Brandon Piotrzkowski
Browse files
Options
Downloads
Patches
Plain Diff
Add tests for various python versions; fixes
#32
parent
f64f421d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!96
Add tests for various python versions; fixes #32
Pipeline
#514791
passed with warnings
2 years ago
Stage: build
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+22
-3
22 additions, 3 deletions
.gitlab-ci.yml
with
22 additions
and
3 deletions
.gitlab-ci.yml
+
22
−
3
View file @
a8df683c
...
...
@@ -12,14 +12,13 @@ stages:
-
test
-
deploy
image
:
python:3.8
.install-cython
:
&install-cython
${PYTHON} -m pip install cython
# Build Python packages
build
:
image
:
python:3.9
stage
:
build
script
:
-
python setup.py sdist -d . bdist_wheel -d .
...
...
@@ -29,7 +28,7 @@ build:
-
'
*.tar.gz'
expire_in
:
1 day
test
:
.
test
:
stage
:
test
before_script
:
-
pip install --upgrade pip
...
...
@@ -37,6 +36,24 @@ test:
script
:
-
python setup.py test
test:python3.8
:
extends
:
.test
image
:
python:3.8
test:python3.9
:
extends
:
.test
image
:
python:3.9
test:python3.10
:
extends
:
.test
allow_failure
:
true
image
:
python:3.10
test:python3.11
:
extends
:
.test
allow_failure
:
true
image
:
python:3.11
# Generate documentation
doc
:
stage
:
test
...
...
@@ -72,6 +89,7 @@ pages:
FAR_study
:
stage
:
test
when
:
manual
image
:
python:3.9
before_script
:
-
pip install --upgrade pip
-
pip install .
...
...
@@ -81,6 +99,7 @@ FAR_study:
FAR_subgrb_study
:
stage
:
test
when
:
manual
image
:
python:3.9
before_script
:
-
pip install --upgrade pip
-
pip install .
...
...
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