diff --git a/rust-built.spec b/rust-built.spec index 69d869f..8613385 100644 --- a/rust-built.spec +++ b/rust-built.spec @@ -5,7 +5,7 @@ %global crate built Name: rust-built -Version: 0.7.3 +Version: 0.7.4 Release: %autorelease Summary: Crate with information from the time it was built @@ -123,7 +123,7 @@ use the "semver" feature of the "%{crate}" crate. %if %{with check} %check # * skip tests that require internet access -%cargo_test -- -- --exact --skip full_testbox +%cargo_test -- -- --exact --skip full_testbox --skip source_date_epoch %endif %changelog diff --git a/rust2rpm.toml b/rust2rpm.toml index 7021f93..8235def 100644 --- a/rust2rpm.toml +++ b/rust2rpm.toml @@ -1,5 +1,8 @@ [tests] -skip = ["full_testbox"] +skip = [ + "full_testbox", + "source_date_epoch", +] skip-exact = true comments = ["skip tests that require internet access"]