-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Reproducible PS/PDF output (master) #6597
New issue
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
c6a4660
To allow reproducible output:
4e477dc
Reproducible PDF output: sort TTF characters
946ae45
Reproducible PDF output: sort fonts
22f71a2
Tests for determinist PDF output:
ad660d7
Share determinism test code for PS and PDF output.
37c28b4
Reproducible PS/tex output.
2e1c773
Removes test_source_date_epoch_tex test, since this is ghostscript de…
541f97e
PEP8
2a6ebc8
Add what's new section
6ee8967
Add some insight when test_source_date_epoch fails.
a3185e6
Allow parallel execution of test_backend_ps:test_determinism_all_tex …
8f095f6
Use subprocess for _test_source_date_epoch, to allow parallel calls (…
c007f49
Change SOURCE_DATE_EPOCH test date, to use two-digits numbers for mon…
ecbdd55
PEP8
65ec88e
Warnings about possible unreproducibility issues
5b405cc
Doc rephrasing, thanks to jkseppan.
d10a21e
Use explicit date formatting for PS backend timestamp, instead of asc…
da55bb6
Revert to 2000-01-01 for the SOURCE_DATE_EPOCH test date.
c56dae7
Use standard date format for PS timestamp
995173d
Rename functions in determinism.py to remove `test' keyword, since th…
eef6b12
TST: Use standard I/O for determinism tests.
QuLogic fb529da
TST: Remove multiple nested imports.
QuLogic ebff832
TST: Fix compatibility with Python 2.
QuLogic f6301c2
Merge pull request #1 from QuLogic/reproducible-master
1786555
Adds __future__ imports to testing/determinism.py
af4213e
Pass usetex setting to _determinism_save
bf7387e
Skip test using ghostscript, since failing may be due to ghostscript …
2cdc577
Forgot to change one timestamp format in c56dae7c52af50ceaca33ba14717…
76bec02
Reuse UTC timezone from dates.py
bbab0c5
Removes now useless option uid for _determinism_check
1a5ada6
Typo
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use subprocess for _test_source_date_epoch, to allow parallel calls (…
…environment is shared between threads).
- Loading branch information
There are no files selected for viewing
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that subprocess call can be replaced by function with
switch_backend
decoratorThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the point is to use different random number generator seeds, not to segregate the backend changes.