Skip to content

Commit

Permalink
removed the log info
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 9, 2024
1 parent 4da2ece commit 13f0d24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}'
8 changes: 4 additions & 4 deletions pytest-extension/test/integration/tmp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 13f0d24

Please sign in to comment.