Commit 0ea668f4 authored by Weblate's avatar Weblate

Merge remote-tracking branch 'origin/master'

parents 6685898e 9a40a702
......@@ -41,7 +41,7 @@ script:
- ./ci/run-$CI_MODE
# upload coverage
after_script:
- if [ -f ".coverage" ] ; then codecov ; fi
- if [ -f ".coverage" ] ; then ./ci/report-coverage ; fi
# use docker based faster build
sudo: false
# trigger Buildtime Trend Service to parse Travis CI log
......
#!/bin/sh
# CodeCov
codecov
# Codacy
coverage xml
python-codacy-coverage -r coverage.xml
......@@ -5,3 +5,4 @@ pylint-django
pyflakes
selenium
httpretty!=0.8.1
codacy-coverage
......@@ -2,7 +2,7 @@ var loading = 0;
var machineTranslationLoaded = false;
var activityDataLoaded = false;
if (window.location.hash && (window.location.hash === '#_=_' || window.location.hash.indexOf("=") > -1)) {
if (window.location.hash && window.location.hash.indexOf("=") > -1) {
window.location.hash = '';
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment