-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from spacetelescope/release-0.19.0
Release 0.19.0
- Loading branch information
Showing
107 changed files
with
13,894 additions
and
648 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
// Obtain files from source control system. | ||
if (utils.scm_checkout()) return | ||
|
||
withCredentials([string( | ||
credentialsId: 'jwql-codecov', | ||
variable: 'codecov_token')]) { | ||
|
||
// Define each build configuration, copying and overriding values as necessary. | ||
bc0 = new BuildConfig() | ||
bc0.nodetype = "linux-stable" | ||
bc0.name = "debug" | ||
bc0.build_cmds = ["conda env update --file=environment.yml", | ||
"with_env -n jwql python setup.py install"] | ||
bc0.test_cmds = ["with_env -n jwql pytest -s --junitxml=result.xml"] | ||
bc0.failedUnstableThresh = 1 | ||
bc0.failedFailureThresh = 1 | ||
|
||
bc0.build_cmds = [ | ||
"conda env update --file=environment.yml", | ||
"pip install codecov pytest-cov", | ||
"with_env -n jwql python setup.py install"] | ||
bc0.test_cmds = [ | ||
"with_env -n jwql pytest -s --junitxml=results.xml --cov=./jwql/ --cov-report xml", | ||
"codecov --token=${codecov_token}"] | ||
|
||
// bc1 = utils.copy(bc0) | ||
// bc1.build_cmds[0] = "conda install -q -y python=3.5" | ||
|
||
// Iterate over configurations that define the (distibuted) build matrix. | ||
// Spawn a host of the given nodetype for each combination and run in parallel. | ||
utils.run([bc0]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Obtain files from source control system. | ||
if (utils.scm_checkout()) return | ||
|
||
// Define each build configuration, copying and overriding values as necessary. | ||
bc0 = new BuildConfig() | ||
bc0.nodetype = "linux-stable" | ||
bc0.name = "debug" | ||
bc0.build_cmds = ["conda env update --file=environment.yml", | ||
"with_env -n jwql python setup.py install"] | ||
bc0.test_cmds = ["cp JWQL_CONFIG jwql/utils/", | ||
"with_env -n jwql pytest -s --junitxml=result.xml"] | ||
bc0.failedUnstableThresh = 1 | ||
bc0.failedFailureThresh = 1 | ||
|
||
|
||
|
||
// bc1 = utils.copy(bc0) | ||
// bc1.build_cmds[0] = "conda install -q -y python=3.5" | ||
|
||
// Iterate over configurations that define the (distibuted) build matrix. | ||
// Spawn a host of the given nodetype for each combination and run in parallel. | ||
utils.run([bc0]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
codecov: | ||
notify: | ||
require_ci_to_pass: yes | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "70...100" | ||
|
||
status: | ||
project: yes | ||
patch: yes | ||
changes: no | ||
|
||
parsers: | ||
gcov: | ||
branch_detection: | ||
conditional: yes | ||
loop: yes | ||
method: no | ||
macro: no | ||
|
||
comment: | ||
layout: "header, diff" | ||
behavior: default | ||
require_changes: no | ||
|
||
ignore: | ||
- "jwql/website/" | ||
- "jwql/database/" | ||
- "*__init__.py*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*************** | ||
common_monitors | ||
*************** | ||
|
||
dark_monitor.py | ||
--------------- | ||
.. automodule:: jwql.instrument_monitors.common_monitors.dark_monitor | ||
:members: | ||
:undoc-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
******************* | ||
instrument_monitors | ||
******************* | ||
|
||
pipeline_tools.py | ||
----------------- | ||
.. automodule:: jwql.instrument_monitors.pipeline_tools | ||
:members: | ||
:undoc-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.