Sul_A.'s blog

By Sul_A., history, 7 months ago, In English

I was wondering if there is a way to add a test to multiple groups? I have some tests that belong to multiple subtasks and I don't want to duplicate tests. These groups do not depend on each other.

  • Vote: I like it
  • +8
  • Vote: I do not like it

»
7 months ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

write a generator that produces the same exact duplicate test.

for example use this python script

print("""
The test that you want 
you can do multiple lines
""")

However all such situations for me end up with using dependencies only.

tbh I don't know a smarter solution , At least I tried.

==================

If the test format is multiple tests , just duplicate the test with adding a small irrelevant test .