fix(boxsdkgen): rename tag for notes API (box/box-openapi#600) #750
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration tests (Legacy) | |
| on: | |
| push: | |
| branches: | |
| - combined-sdk | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| core: | |
| name: Integration tests | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "2.0.0" | |
| - name: All Tests | |
| if: startsWith(github.head_ref, 'codegen-release') | |
| env: | |
| INTEGRATION_TESTING_CONFIG: ${{ secrets.INTEGRATION_TESTING_CONFIG }} | |
| run: dotnet test .\LegacySdk\Box.V2.Test.Integration -f netcoreapp2.0 --logger "console;verbosity=normal" | |
| - name: Smoke Tests | |
| if: "!startsWith(github.head_ref, 'codegen-release')" | |
| env: | |
| INTEGRATION_TESTING_CONFIG: ${{ secrets.INTEGRATION_TESTING_CONFIG }} | |
| run: | | |
| dotnet test .\LegacySdk\Box.V2.Test.Integration -f netcoreapp2.0 --logger "console;verbosity=normal" --filter ` | |
| "FullyQualifiedName~BoxFilesManagerIntegrationTest.UploadAsync_ForSmallFile_ShouldUploadFileToFolder|` | |
| FullyQualifiedName~BoxFilesManagerIntegrationTest.DownloadAsync_ForUploadedFile_ShouldReturnSameFileAsTheUploadedFile|` | |
| FullyQualifiedName~BoxFilesManagerIntegrationTest.GetInformationAsync_ForCorrectFileId_ShouldReturnSameFileAsUploadedFile|` | |
| FullyQualifiedName~BoxFilesManagerIntegrationTest.UploadBigFileInSession_ShouldUploadTheFile_OnlyIfCommitIsCalled|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.CreateAsync_ForCorrectBoxFolderRequest_ShouldCreateNewFolder|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.GetInformationAsync_ForExistingFolder_ShouldReturnInformationRelatedToThisFolder|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.UpdateInformationAsync_ForExistingFolder_ShouldCorrectlyUpdateThisFolderName|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.CopyAsync_ForExistingFolder_ShouldCopyThisFolder|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.DeleteAsync_ForExistingFolder_ShouldDeleteThisFolder|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.GetFolderItemsAsync_WithOffsetPagination_ShouldReturnCorrectNumberOfFolderItems|` | |
| FullyQualifiedName~BoxFolderManagerIntegrationTest.GetFolderItemsMarkerBasedAsync_WithMarkerPagination_ShouldReturnCorrectNumberOfFolderItems" |