8000 Started implementing support for deterministic figure output by astrofrog · Pull Request #196 · matplotlib/pytest-mpl · GitHub
[go: up one dir, main page]

Skip to content

Started implementing support for deterministic figure output #196

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 8 commits into from
Apr 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change SOURCE_DATE_EPOCH back to previous value
  • Loading branch information
astrofrog committed Apr 1, 2023
commit bd41a5c2e8656a997805e1bd2d49dffe8113a036
2 changes: 1 addition & 1 deletion pytest_mpl/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def save_figure(self, item, fig, filename):
extra_metadata = {"Creator": None, "Producer": None, "CreationDate": None}
elif ext == 'eps':
extra_metadata = {"Creator": "test"}
os.environ['SOURCE_DATE_EPOCH'] = '1234567890'
os.environ['SOURCE_DATE_EPOCH'] = '1680254601'
elif ext == 'svg':
extra_metadata = {"Date": None}
extra_rcparams["svg.hashsalt"] = "test"
Expand Down
0