Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating timeline docs to prioritize pd accessors #691

Merged
merged 4 commits into from
Aug 8, 2023

Merge branch 'main' into ianhelle/Doc-updates-2023-07-31

625550d
Select commit
Loading
Failed to load commit list.
Merged

Updating timeline docs to prioritize pd accessors #691

Merge branch 'main' into ianhelle/Doc-updates-2023-07-31
625550d
Select commit
Loading
Failed to load commit list.
Azure Pipelines / microsoft.msticpy cancelled Aug 8, 2023 in 23m 10s

Build #20230808.11 had test failures

Details

Tests

  • Failed: 1 (0.04%)
  • Passed: 2,603 (99.20%)
  • Other: 20 (0.76%)
  • Total: 2,624
Code coverage

  • 20586 of 25490 lines covered (80.76%)

Annotations

Check failure on line 613 in Build log

See this annotation in the file changed.

@azure-pipelines azure-pipelines / microsoft.msticpy

Build log #L613

Cmd.exe exited with code '1'.

Check failure on line 9 in Build log

See this annotation in the file changed.

@azure-pipelines azure-pipelines / microsoft.msticpy

Build log #L9

The current operating system is not capable of running this task. That typically means the task was written for Windows only. For example, written for Windows Desktop PowerShell.

Check failure on line 1 in test_doc_pages_doc_links

See this annotation in the file changed.

@azure-pipelines azure-pipelines / microsoft.msticpy

test_doc_pages_doc_links

AssertionError: assert not ['404 - https://www.anaconda.com/distribution/']
Raw output
ignored_urls = ['https://nest.cybereason.com', 'https://www.virustotal.com/vtapi/v2/file/report', 'https://www.virustotal.com/vtapi/v....org', 'https://www.virustotal.com/vtapi/v2/domain/report', 'https://api.xforce.ibmcloud.com/url/fkksjobnn43.org', ...]

    @pytest.mark.skipif(
        not os.environ.get("MSTICPY_TEST_NOSKIP"), reason="Skipped for local tests."
    )
    def test_doc_pages_doc_links(ignored_urls):
        path_rewrite = {
            "build\\html": "source",
            "build/html": "source",
            ".html": ".rst",
        }
        results = check_docs(
            "./docs/build/html",
            recurse=True,
            ignore_uris=ignored_urls,
        )
        page_errors = []
        for page, result_dict in results.items():
            page_errors.extend(
                f"{result.status} - {result.url}"
                for result in result_dict.values()
                if result.status == 404
            )
    
        if page_errors:
            print("Please fix the following 404 Errors:")
            for page in page_errors:
                print(page)
>       assert not page_errors
E       AssertionError: assert not ['404 - https://www.anaconda.com/distribution/']

tests\test_doc_links.py:78: AssertionError