File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,16 @@ Change history for Coverage.py
17
17
Unreleased
18
18
----------
19
19
20
+ - Coverage commands no longer clobber the first entry in sys.path, fixing
21
+ `issue 715 `_.
22
+
20
23
- Improvements to context support:
21
24
22
25
- The "no such table: meta" error is fixed.: `issue 716 `_.
23
26
24
27
- Combining data files now goes much faster.
25
28
29
+ .. _issue 715 : https://github.com/nedbat/coveragepy/issues/715
26
30
.. _issue 716 : https://github.com/nedbat/coveragepy/issues/716
27
31
28
32
Original file line number Diff line number Diff line change @@ -465,10 +465,6 @@ def command_line(self, argv):
465
465
if self .do_help (options , args , parser ):
466
466
return OK
467
467
468
- # We need to be able to import from the current directory, because
469
- # plugins may try to, for example, to read Django settings.
470
- sys .path [0 ] = ''
471
-
472
468
# Listify the list options.
473
469
source = unshell_list (options .source )
474
470
omit = unshell_list (options .omit )
You can’t perform that action at this time.
0 commit comments