Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Service Desk
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
bilby
Merge requests
!358
Resolve "Split tests into "on-push" and "scheduled""
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Split tests into "on-push" and "scheduled""
309-split-tests-into-on-push-and-scheduled
into
master
Overview
0
Commits
2
Pipelines
3
Changes
2
Merged
Gregory Ashton
requested to merge
309-split-tests-into-on-push-and-scheduled
into
master
6 years ago
Overview
0
Commits
2
Pipelines
3
Changes
2
Expand
Closes
#309 (closed)
Remove the
example
tests from the normal C.I. tests.
Adds a scheduled-only job which does the usual test + the scheduled tests
Edited
6 years ago
by
Gregory Ashton
0
0
Merge request reports
Compare
master
version 1
81ca8e85
6 years ago
master (base)
and
latest version
latest version
43f7fd08
2 commits,
6 years ago
version 1
81ca8e85
1 commit,
6 years ago
2 files
+
24
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
22
−
0
Options
@@ -79,6 +79,28 @@ python-3.7:
-
coverage_badge.svg
-
docs/_build/html/
# Tests run at a fixed schedule rather than on push
scheduled-python-3.7
:
stage
:
test
image
:
bilbydev/bilby-test-suite-python37
only
:
-
schedules
before_script
:
# Install the dependencies specified in the Pipfile
-
pipenv install --three --python=/opt/conda/bin/python --system --deploy
script
:
-
python setup.py install
# Run pyflakes
-
flake8 .
# Run tests
-
pytest
# Run tests which are only done on schedule
-
pytest test/example_test.py
-
pytest test/gw_example_test.py
pages
:
stage
:
deploy
dependencies
:
Loading