We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@pytest.mark.integration @retry_failed @pytest.mark.vcr def test_dataset_export_upload_failure(runner, tmpdir, project, zenodo_sandbox): """Test failed uploading of a file to Zenodo deposit.""" result = runner.invoke(cli, ["dataset", "create", "my-dataset"]) assert 0 == result.exit_code, format_result_exception(result) + str(result.stderr_bytes) assert "OK" in result.output # create data file new_file = tmpdir.join("datafile.csv") new_file.write("1,2,3") # add data to dataset result = runner.invoke(cli, ["dataset", "add", "--copy", "my-dataset", str(new_file)]) assert 0 == result.exit_code, format_result_exception(result) + str(result.stderr_bytes) result = runner.invoke(cli, ["dataset", "export", "my-dataset", "zenodo"]) assert 1 == result.exit_code, result.output + str(result.stderr_bytes) > assert "metadata.creators.0.affiliation" in result.output E AssertionError: assert 'metadata.creators.0.affiliation' in '' E + where '' = <RenkuResult KeyError('errors')>.output
This test has been failing in CI for a while, so it's unlikely that it's just due to Zenodo being flaky.
We should investigate this
The text was updated successfully, but these errors were encountered:
This doesn't happen anymore/was already fixed
Sorry, something went wrong.
Panaetius
No branches or pull requests
This test has been failing in CI for a while, so it's unlikely that it's just due to Zenodo being flaky.
We should investigate this
The text was updated successfully, but these errors were encountered: