diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 23:13:27 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 23:13:27 -0500 |
| commit | 076c9ebea10fba2a978d19057caccab9e8862ab4 (patch) | |
| tree | a1ae525672109429e3a6e2fd7d5cc53f0b52106e /noxfile.py | |
| parent | eb995fafdddc3de9632c3bcb05356e79ee46dc5c (diff) | |
| download | cmd2-git-076c9ebea10fba2a978d19057caccab9e8862ab4.tar.gz | |
Attempt to fix remaining black failures
Diffstat (limited to 'noxfile.py')
| -rw-r--r-- | noxfile.py | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -4,7 +4,10 @@ import nox @nox.session(python=['3.9']) def docs(session): session.install( - 'sphinx', 'sphinx-rtd-theme', '.', 'plugins/ext_test', + 'sphinx', + 'sphinx-rtd-theme', + '.', + 'plugins/ext_test', ) session.chdir('docs') tmpdir = session.create_tmp() @@ -30,5 +33,9 @@ def tests(session, plugin): # cd into test directory to run other unit test session.run( - 'invoke', 'plugin.{}.pytest'.format(plugin.replace('_', '-')), '--junit', '--no-pty', '--append-cov', + 'invoke', + 'plugin.{}.pytest'.format(plugin.replace('_', '-')), + '--junit', + '--no-pty', + '--append-cov', ) |
