diff options
| author | Natanael Arndt <arndtn@gmail.com> | 2020-03-15 19:13:50 +0100 |
|---|---|---|
| committer | Natanael Arndt <arndtn@gmail.com> | 2020-03-15 19:13:50 +0100 |
| commit | a8f3232223b0f0f098a7cce6b8c0517424b4eaa7 (patch) | |
| tree | a64711d98a806096e2685bef276f1373d5515c48 /test/testutils.py | |
| parent | 0e5efef78702575e4abff4d8076eac4e2bd9d5f0 (diff) | |
| download | rdflib-a8f3232223b0f0f098a7cce6b8c0517424b4eaa7.tar.gz | |
Remove colons from test result files. Fix #901.
Diffstat (limited to 'test/testutils.py')
| -rw-r--r-- | test/testutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutils.py b/test/testutils.py index 02bc4b23..20b060d3 100644 --- a/test/testutils.py +++ b/test/testutils.py @@ -96,7 +96,7 @@ def nose_tst_earl_report(generator, earl_report_name=None): print("Ran %d tests, %d skipped, %d failed. "%(tests, skip, tests-skip-success)) if earl_report_name: now = isodate.datetime_isoformat(datetime.datetime.utcnow()) - earl_report = 'test_reports/%s-%s.ttl' % (earl_report_name, now) + earl_report = 'test_reports/%s-%s.ttl' % (earl_report_name, now.replace(":", "")) report.serialize(earl_report, format='n3') report.serialize('test_reports/%s-latest.ttl'%earl_report_name, format='n3') |
