diff --git a/pages/articles/2023/new_website.md b/pages/articles/2023/new_website.md index 35b940e..224bba6 100644 --- a/pages/articles/2023/new_website.md +++ b/pages/articles/2023/new_website.md @@ -26,4 +26,4 @@ Other things of note worthy mention: - Website updating now occurs automagically. We do this via Gitlab using CD/CI pipelines. Now I just edit a file, push the changes and the changes deploy my site on the interwebs. -- Our projects from [GitHub](https://github.com/NoFussComputing) and [GitLab](https://gitlab.com/nofusscomputing) deploy their docs to our site, again automagically. +- Our [projects](../../projects/index.md) from [GitHub](https://github.com/NoFussComputing) and [GitLab](https://gitlab.com/nofusscomputing) deploy their docs to our site, again automagically. diff --git a/test/unit/conftest.py b/test/unit/conftest.py index 797f0cb..66e405a 100644 --- a/test/unit/conftest.py +++ b/test/unit/conftest.py @@ -91,18 +91,20 @@ class Data: if 'gitlab.com/-/ide/project' not in url: # ignore gitlab ide links - link = self.parse_url(url) + if 'nofusscomputing.com' not in url: # ignore gitlab ide links - hyperlink_source_file = {'name': source_file, 'location': link_location} + link = self.parse_url(url) - if link['url_id'] in data['hyperlinks']: + hyperlink_source_file = {'name': source_file, 'location': link_location} - data['hyperlinks'][link['url_id']]['source_files'].append(hyperlink_source_file) + if link['url_id'] in data['hyperlinks']: - else: + data['hyperlinks'][link['url_id']]['source_files'].append(hyperlink_source_file) - link['source_files'] = [ hyperlink_source_file ] - data['hyperlinks'][link['url_id']] = link + else: + + link['source_files'] = [ hyperlink_source_file ] + data['hyperlinks'][link['url_id']] = link events = [self.process_browser_log_entry(entry) for entry in self.driver.get_log('performance')]