# Possible to specify a test set as broken?

**URL:** https://discourse.julialang.org/t/possible-to-specify-a-test-set-as-broken/5019
**Category:** General Usage
**Created:** [July 22, 2017, 2:45pm UTC](https://discourse.julialang.org/t/possible-to-specify-a-test-set-as-broken/5019 "2017-07-22T14:45:13Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![josefsachs](https://avatars.discourse-cdn.com/v4/letter/j/f475e1/32.png) [@josefsachs](https://discourse.julialang.org/u/josefsachs)
#### Post date: [July 22, 2017, 2:45pm UTC](https://discourse.julialang.org/t/possible-to-specify-a-test-set-as-broken/5019/1 "2017-07-22T14:45:13Z")

</div>

I would like to specify a _test set_ as broken, just as I can specify a _test_ as broken with `@test_broken`.  
Is there a way to do that?

---

<div class="post-metadata">

### Author: ![jw3126](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jw3126/32/3086_2.png) [@jw3126](https://discourse.julialang.org/u/jw3126)
#### Post date: [July 22, 2017, 6:44pm UTC](https://discourse.julialang.org/t/possible-to-specify-a-test-set-as-broken/5019/2 "2017-07-22T18:44:15Z")

</div>

I don’t think such a thing is implemented at the moment. A `@broken` macro that can be used like

```nohighlight
@broken @test ...
@broken @test_throws ...
@broken @testset ... 
...

```

would be very convenient.
