Skip to content

Commit

Permalink
Include microsecond in post-release tag to avoid conflicts when paral…
Browse files Browse the repository at this point in the history
…lel CI runs happen in the same second.
  • Loading branch information
jaraco committed Nov 18, 2019
1 parent dfc89d7 commit e7ef3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def sampleproject_dist(tmp_path_factory):
assert orig != sub
setup.seek(0)
setup.write(sub)
tag = datetime.datetime.now().strftime('%Y%m%d%H%M%S')
tag = datetime.datetime.now().strftime('%Y%m%d%H%M%S%f')
subprocess.run([
sys.executable,
'setup.py',
Expand Down

0 comments on commit e7ef3e1

Please sign in to comment.