diff --git a/README.md b/README.md index 0416f0b92f..d5c73bb09b 100755 --- a/README.md +++ b/README.md @@ -5,10 +5,9 @@ - [Installation](#installation) - [Running MeTTaLog](#neckbeard-running-mettalog) - [With Docker](#whale-running-mettalog-with-docker) -- [Continuous Reports](https://logicmoo.github.io/metta-testsuite/ci/) -- [Nightly Reports](https://logicmoo.github.io/metta-wam/nightly/) -- [More Reports](https://logicmoo.github.io/metta-wam) -- [Tests](https://github.com/logicmoo/metta-testsuite/blob/development/tests/) and [Result Links](https://github.com/logicmoo/metta-testsuite/blob/development/reports/TEST_LINKS.md) +- Continuous Reports [https://logicmoo.github.io/metta-testsuite/ci/](https://logicmoo.github.io/metta-testsuite/ci/) +- Nightly Reports [https://logicmoo.github.io/metta-wam/nightly/](https://logicmoo.github.io/metta-wam/nightly/) +- More Reports [https://logicmoo.github.io/metta-wam](https://logicmoo.github.io/metta-wam) - [Testing Readme](https://github.com/logicmoo/metta-testsuite/blob/development/tests/README.md) and [Result Links](https://github.com/logicmoo/metta-testsuite/blob/development/reports/TEST_LINKS.md) - [Overview Documentation](https://github.com/trueagi-io/metta-wam/blob/master/docs/OVERVIEW.md). diff --git a/scripts/into_junit.py b/scripts/into_junit.py index eb9056f8e5..0deabd31a2 100644 --- a/scripts/into_junit.py +++ b/scripts/into_junit.py @@ -17,7 +17,8 @@ def create_testcase_element(testclass, testname, stdout, identifier, got, expect testcase = ET.Element("testcase", classname=testclass, name=testname, time=time) test_res = f"Assertion: {stdout}\nExpected: {expected}\nActual: {got}" - url = url.replace("/./","/").replace("//","/").replace(":/","://") + url = url.replace("/./","/").replace("//","/").replace(":/","://") + url = url.replace("github.io/metta-wam/","github.io/metta-testsuite/") if testclass != 'WHOLE-TESTS': testfile = testfile_name(url) failcount = failcounts_dict[testfile]