Skip to content

Commit

Permalink
chore: skip samples/snippets in top level snippets test
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut authored and shollyman committed Jul 22, 2020
1 parent 45e70c1 commit 1ec41ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion noxfile.py
Expand Up @@ -113,8 +113,10 @@ def snippets(session):
session.install("-e", ".[all]")

# Run py.test against the snippets tests.
# Skip tests in samples/snippets, as those are run in a different session
# using the nox config from that directory.
session.run("py.test", os.path.join("docs", "snippets.py"), *session.posargs)
session.run("py.test", "samples", *session.posargs)
session.run("py.test", "samples", "--ignore=samples/snippets", *session.posargs)


@nox.session(python="3.8")
Expand Down

0 comments on commit 1ec41ef

Please sign in to comment.