diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e6e48274..35c4949c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/p/gitgalaxy + url: [https://pypi.org/p/gitgalaxy](https://pypi.org/p/gitgalaxy) permissions: id-token: write contents: read @@ -80,7 +80,7 @@ jobs: git push -f --tags bitbucket azure-sync: - name: Sync to Azure DevOps + name: Sync to Azure DevOps Repository needs: pypi-publish runs-on: ubuntu-latest steps: @@ -91,7 +91,6 @@ jobs: - name: Sync Code and Tags to Azure run: | - # Note: Azure Organization, Project, and Repository are all named gitgalaxy - git remote add azure https://${{ secrets.AZURE_DEVOPS_TOKEN }}@https://dev.azure.com/gitgalaxy/gitgalaxy/_git/gitgalaxy + git remote add azure https://${{ secrets.AZURE_SYNC_TOKEN }}@dev.azure.com/squid-protocol/gitgalaxy/_git/gitgalaxy git push -f azure HEAD:main - git push -f --tags azure + git push -f --tags azure \ No newline at end of file diff --git a/tests/core_engine/test_language_standards_strict.py b/tests/core_engine/test_language_standards_strict.py index 57c4084f..913419d2 100644 --- a/tests/core_engine/test_language_standards_strict.py +++ b/tests/core_engine/test_language_standards_strict.py @@ -63,7 +63,7 @@ def test_c_knr_ambiguity_trap(): + " INVALID_MACRO" ) - assert_redos_immune(c_func, poison_knr) + assert_redos_immune(c_func, poison_knr, timeout_sec=3.0) # Ensure it still correctly matches the MS-DOS BEGIN edge case valid_knr = "int legacy_func(a) \n int a; \n BEGIN \n"