Skip to content

Commit

Permalink
Preventing nox from running the same test multiple times.
Browse files Browse the repository at this point in the history
Change-Id: I63893ad7fde56af18180710e66051d7dac98a569
  • Loading branch information
Jon Wayne Parrott committed Jul 7, 2016
1 parent bb6b63b commit 524e14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def filter_samples(sample_dirs, changed_files):
if changed_file.startswith(sample_dir):
result.append(sample_dir)

return result
return list(set(result))


def setup_appengine(session):
Expand Down

0 comments on commit 524e14a

Please sign in to comment.