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
!217
Version 0.3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Version 0.3
v03
into
master
Overview
0
Commits
4
Pipelines
1
Changes
2
Merged
Colm Talbot
requested to merge
v03
into
master
6 years ago
Overview
0
Commits
4
Pipelines
1
Changes
2
Expand
Update to version 0.3, this requires
https://git.ligo.org/Monash/tupak/merge_requests/216
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9be2997f
4 commits,
6 years ago
2 files
+
9
−
19
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
+
4
−
18
Options
@@ -16,14 +16,9 @@ stages:
# test example on python 2
python-2
:
stage
:
test
image
:
continuumio/anaconda
image
:
bilbydev/test-suite-py2
before_script
:
-
apt-get update -y
-
apt-get install gcc -y
-
apt install -y libgl1-mesa-glx
-
pip install pip --upgrade
-
pip install pipenv
-
pip install enum
# Install the dependencies specified in the Pipfile
-
pipenv install --two --python=/opt/conda/bin/python2 --system --deploy
script
:
-
python setup.py install
@@ -33,17 +28,9 @@ python-2:
# test example on python 3
python-3
:
stage
:
test
image
:
continuumio/anaconda
3
image
:
bilbydev/test-suite-py
3
before_script
:
-
apt-get update -y
-
apt-get install gcc -y
-
apt install -y libgl1-mesa-glx
-
pip install pip --upgrade
-
pip install 'coverage>=4.5'
-
pip install coverage-badge
-
pip install flake8
-
pip install pytest-cov
-
pip install pipenv
# Install the dependencies specified in the Pipfile
-
pipenv install --three --python=/opt/conda/bin/python --system --deploy
script
:
-
python setup.py install
@@ -57,7 +44,6 @@ python-3:
-
coverage-badge -o coverage_badge.svg -f
# Make the documentation
-
pip install -r docs/requirements.txt
-
cd docs
-
conda install -y make
-
make clean
Loading