Skip to content

Commit

Permalink
Merge pull request xonsh#3398 from bobhy/unit_tests1
Browse files Browse the repository at this point in the history
correct xonsh invocation for unit tests
  • Loading branch information
gforsyth committed Jan 30, 2020
2 parents 2f6a7f2 + a976c82 commit bcfbd4c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,9 @@ rever/
# elm
xonsh/webconfig/elm-stuff/
xonsh/webconfig/js/app.js

# venv (e.g, autovox)
venv/

# VS Code
.vscode/
24 changes: 24 additions & 0 deletions news/unit_tests1.rst
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion scripts/xonsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3 -u
#!/usr/bin/env -S python3 -u

from xonsh.main import main
main()
2 changes: 1 addition & 1 deletion scripts/xonsh-cat
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit bcfbd4c

Please sign in to comment.