mbrt / ruplicity

Rust library managing duplicity backups
MIT License
18 stars 1 forks source link

Fix date time formatting #14

Closed mbrt closed 9 years ago

mbrt commented 9 years ago

There are currently no differences between formatting a timestamp in UTC and local time zones. There is probably a bug in time_utils module.

mbrt commented 9 years ago

Issue is now visible in travis build for commit dff5f13daaa0b3f5093bed97bbb4af2730488de8.

mbrt commented 9 years ago

It seems related to rust-lang-deprecated/time#116.

mbrt commented 9 years ago

A possible cause is the run of tests in parallel. When time zone is changed, it is changed globally, so the output depends on execution order of tests.

See Disable parallel tests and rust-lang/rust#1813.