From bc8fb825c7e1e933e2b1ace21c305433e0c57522 Mon Sep 17 00:00:00 2001 From: Ryan Lahfa Date: Sun, 14 Jan 2024 16:31:04 +0100 Subject: feat(tvix/eval): move away from `test_generator` to `rstest` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `test-generator` has not been updated in the past 2 years. `rstest` has not been updated in the past 5 months. This is an improvement in the maintenance stateā€¦ I guess? We get also new features, it changes the name of the tests with numbers too. Change-Id: I5376104c7704f525dba7524da78daa09867cc669 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10623 Tested-by: BuildkiteCI Reviewed-by: flokli --- tvix/eval/Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'tvix/eval/Cargo.toml') diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index 2c8bb206ac..d1bb48a7c5 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -35,14 +35,9 @@ xml-rs = "0.8.4" criterion = "0.5" itertools = "0.12.0" pretty_assertions = "1.2.1" +rstest = "0.18.2" tempfile = "3.3.0" -[dev-dependencies.test-generator] -# This fork of test-generator adds support for cargo workspaces, see -# also https://github.com/frehberg/test-generator/pull/14 -git = "https://github.com/JamesGuthrie/test-generator.git" -rev = "82e799979980962aec1aa324ec6e0e4cad781f41" - [features] default = ["impure", "arbitrary", "nix_tests"] -- cgit 1.4.1