diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2020-08-30 14:36:33 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2020-08-30 15:01:48 -0400 |
commit | 195358679d7e129a897c2d87f91d426c5c81b149 (patch) | |
tree | d414b851e12c8f819bd0908f1e1fdac33a60a927 /.travis.yml | |
parent | 210448b6c215e11e263141fd2572dab379de8684 (diff) |
Experiment with quick sdist-and-test checks in Travis
Can't wait to move to Circle so I can do this testing locally
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index a7648d81..58a3ac42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,6 +72,10 @@ script: - inv coverage # Ensure documentation builds, both sites, maxxed nitpicking - inv sites + # Sanity check ability to build sdist + - python setup.py sdist + # And ability to run tests from within the result + - cd dist && tar xzvf *.tar.gz && rm *.tar.gz && cd paramiko-* && ls -l && pip install -e . && inv test notifications: irc: channels: "irc.freenode.org#paramiko" |