mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Merge pull request #3398 from bobhy/unit_tests1
correct xonsh invocation for unit tests
This commit is contained in:
commit
bcfbd4cde9
4 changed files with 32 additions and 2 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -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
24
news/unit_tests1.rst
Normal 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>
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3 -u
|
||||
#!/usr/bin/env -S python3 -u
|
||||
|
||||
from xonsh.main import main
|
||||
main()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue