Skip to content

Commit

Permalink
Fix tests after #342 (#354)
Browse files Browse the repository at this point in the history
* fix tests after #342

* add coverage files into gitignore
  • Loading branch information
ekalinin committed May 28, 2024
1 parent c1dffc5 commit 066a02c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.coverage
.coverage.*
*.pyc
*.pyo
*.swp
Expand Down
3 changes: 2 additions & 1 deletion tests/nodeenv_test.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from __future__ import absolute_import
from __future__ import unicode_literals

import os.path
import sys
if sys.version_info < (3, 3):
from pipes import quote as _quote
else:
from shlex import quote as _quote
import os.path
import subprocess
import sys
import sysconfig
Expand Down

0 comments on commit 066a02c

Please sign in to comment.