tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

default-skipif.toml (355B)


      1 [DEFAULT]
      2 skip-if = [
      3  "os == 'win' && debug",  # a pesky comment
      4 ]
      5 
      6 [test1]
      7 skip-if = [
      8  "debug",
      9 ]
     10 
     11 [test2]
     12 skip-if = [
     13  "os == 'linux'",
     14 ]
     15 
     16 [test3]
     17 skip-if = [
     18  "os == 'win'",
     19 ]
     20 
     21 [test4]
     22 skip-if = [
     23  "os == 'win' && debug",
     24 ]
     25 
     26 [test5]
     27 foo = "bar"
     28 
     29 [test6]
     30 skip-if = [
     31  "debug # a second pesky inline comment", # inline comments are discouraged
     32 ]