Skip to content

Commit

Permalink
Dashboard: Enable notifications for everything
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed May 28, 2019
1 parent 7cd08c2 commit 127a3c3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions tools/dashboard/dashboard.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
sortkey: 10
name: Formatting
host: GCP
notify: on
report_url: https://storage.googleapis.com/cp2k-ci/dashboard_formatting_report.txt
info_url: http://www.cp2k.org/dev:formattingconventions

[conventions]
sortkey: 20
name: Coding conventions
host: GCP
notify: on
report_url: https://storage.googleapis.com/cp2k-ci/dashboard_conventions_report.txt
info_url: http://www.cp2k.org/dev:codingconventions

Expand Down Expand Up @@ -248,7 +246,6 @@ report_url: https://storage.googleapis.com/cp2k-ci/dashboard_python_report.txt
sortkey: 630
name: Linux-x86-64-valgrind.sdbg
host: UZH, opt5
notify: on
timeout: 48
report_url: http://www.cp2k.org/static/regtest/trunk/uzh-opt5/Linux-x86-64-valgrind.sdbg.out

Expand Down
2 changes: 1 addition & 1 deletion tools/dashboard/generate_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_sortkey(s):
name = config.get(s,"name")
host = config.get(s,"host")
report_url = config.get(s,"report_url")
do_notify = config.getboolean(s,"notify") if(config.has_option(s,"notify")) else False
do_notify = config.getboolean(s,"notify") if(config.has_option(s,"notify")) else True
timeout = config.getint(s,"timeout") if(config.has_option(s,"timeout")) else 24

# find latest commit that should have been tested by now
Expand Down

0 comments on commit 127a3c3

Please sign in to comment.