Merge pull request #3398 from bobhy/unit_tests1

correct xonsh invocation for unit tests
This commit is contained in:
Gil Forsyth 2020-01-30 11:40:29 -05:00 committed by GitHub
commit bcfbd4cde9
Failed to generate hash of commit
4 changed files with 32 additions and 2 deletions

6
.gitignore vendored
View file

@ -63,3 +63,9 @@ rever/
# elm
xonsh/webconfig/elm-stuff/
xonsh/webconfig/js/app.js
# venv (e.g, autovox)
venv/
# VS Code
.vscode/

24
news/unit_tests1.rst Normal file
View file

@ -0,0 +1,24 @@
**Added:**
* <news item>
**Changed:**
* <news item>
**Deprecated:**
* <news item>
**Removed:**
* <news item>
**Fixed:**
* Unit test failures in test_integrations under ubuntu 19.10 with Python 3.8.0
* .gitignore entries for venv under project root (as for autovox) and for VS Code.
**Security:**
* <news item>

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python3 -u
#!/usr/bin/env -S python3 -u
from xonsh.main import main
main()

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python3 -u
#!/usr/bin/env -S python3 -u
from xonsh.xoreutils.cat import cat_main as main
main()