Skip to content

Instantly share code, notes, and snippets.

@dhermes
Created September 19, 2017 18:28
Show Gist options
  • Save dhermes/1153863ddd3dfb44c2e3cf3206a0bcea to your computer and use it in GitHub Desktop.
Save dhermes/1153863ddd3dfb44c2e3cf3206a0bcea to your computer and use it in GitHub Desktop.
$ nox -s bad
nox > Running session bad
nox > .../python3.6 -m virtualenv .../.nox/bad
nox > chdir MERP
nox > false
nox > Command false failed with exit code 1
nox > Session bad failed.
$ echo ${?}
0
import nox
@nox.session
def bad(session):
session.run('false')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment