Tag object that indicates a test is disk-intensive (i.e., consumes a lot of disk-IO bandwidth when it runs).
The corresponding tag annotation for this tag object is org.scalatest.tags.Disk.
This tag object can be used to tag test functions (in style traits other than Spec, in which tests are methods not functions) as being disk-intensive.
See the "tagging tests" section in the documentation for your chosen styles to see the syntax. Here's an example for FlatSpec:
Tag object that indicates a test is disk-intensive (i.e., consumes a lot of disk-IO bandwidth when it runs).
The corresponding tag annotation for this tag object is
org.scalatest.tags.Disk
. This tag object can be used to tag test functions (in style traits other thanSpec
, in which tests are methods not functions) as being disk-intensive. See the "tagging tests" section in the documentation for your chosen styles to see the syntax. Here's an example forFlatSpec
: