As of this commit, this test will fail, because the underlying cause hasn't been fixed.
BQ5WHPXRTBT2GGBJZNFME2WTVGANXQ66N2HL4S23V65HZMGSQBFQC
my $jobset = request_json({ uri => '/jobset/sample2/default2', method => 'PUT', data => { type => "1", flake => "github:nixos/nix", enabled => "1", visible => "1", checkinterval => "0"} });
is($jobset->code(), 201, "PUTting a new jobset creates it");
my $delete = request_json({ uri => "/project/sample2", method => "DELETE" });
is($delete->code(), 200, "DELETEing a jobset with no evaluations and builds succeeds");
};
};