From 9d07bcd3f3668664d3a5d9dfaa88750337ff6c2d Mon Sep 17 00:00:00 2001 From: barmull Date: Fri, 12 Apr 2024 13:17:22 +0200 Subject: [PATCH] deletion: delete spec/workload/scalability_spec.cr - test group does not exist anymore Signed-off-by: barmull --- spec/workload/scalability_spec.cr | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 spec/workload/scalability_spec.cr diff --git a/spec/workload/scalability_spec.cr b/spec/workload/scalability_spec.cr deleted file mode 100644 index 994214766..000000000 --- a/spec/workload/scalability_spec.cr +++ /dev/null @@ -1,29 +0,0 @@ -require "../spec_helper" -require "../../src/tasks/utils/utils.cr" -require "colorize" - -describe "Scalability" do - before_all do - `./cnf-testsuite setup` - $?.success?.should be_true - end - - after_all do - `./cnf-testsuite samples_cleanup` - $?.success?.should be_true - end - -it "'scalability' should run all of the scalability tests", tags: "[scalability]" do - `./cnf-testsuite samples_cleanup` - response_s = `./cnf-testsuite setup` - LOGGING.info response_s - # `./cnf-testsuite sample_coredns_with_wait_setup` - LOGGING.info `./cnf-testsuite cnf_setup cnf-config=./sample-cnfs/sample-coredns-cnf/cnf-testsuite.yml verbose` - $?.success?.should be_true - response_s = `./cnf-testsuite scalability` - LOGGING.info response_s - $?.success?.should be_true - (/PASSED: Replicas increased to 3/ =~ response_s).should_not be_nil - (/PASSED: Replicas decreased to 1/ =~ response_s).should_not be_nil - end -end