diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22fe0db..0188bfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,4 +39,4 @@ jobs: SAAS_HOST: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }} SAAS_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }} SAAS_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }} - PYTEST_ADDOPTS: '-o log_cli=true -o log_cli_level=INFO ${{ steps.pytest-markers.outputs.slow-tests }}' + PYTEST_ADDOPTS: ${{ steps.pytest-markers.outputs.slow-tests }}' diff --git a/pytest-extension/test/integration/tmp_test.py b/pytest-extension/test/integration/tmp_test.py index 32dbacb..cfddd23 100644 --- a/pytest-extension/test/integration/tmp_test.py +++ b/pytest-extension/test/integration/tmp_test.py @@ -73,10 +73,10 @@ def validate_bucketfs_std_params(**kwargs): kwargs[StdParams.path_in_bucket.name] = '' bfs_path = create_bucketfs_location(**kwargs) bfs_path = bfs_path / 'test_file.txt' - # bfs_path.write(TEST_FILE_CONTENT) - # file_content = b"".join(bfs_path.read()) - # assert file_content == TEST_FILE_CONTENT - # time.sleep(30) + bfs_path.write(TEST_FILE_CONTENT) + file_content = b"".join(bfs_path.read()) + assert file_content == TEST_FILE_CONTENT + time.sleep(30) def validate_cli_args(backend, cli_args, base_tag, callback):