forked from iterative/dvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request iterative#3034 from mroutis/remove-py2-comments
py3: remove code related to py2 limitations
- Loading branch information
Showing
8 changed files
with
14 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
import os | ||
import sys | ||
|
||
import pytest | ||
|
||
from dvc.dependency.hdfs import DependencyHDFS | ||
from tests.unit.dependency.test_local import TestDependencyLOCAL | ||
|
||
|
||
@pytest.mark.skipif( | ||
sys.version_info[0] == 2 and os.name == "nt", | ||
reason="Not supported for python 2 on Windows.", | ||
) | ||
class TestDependencyHDFS(TestDependencyLOCAL): | ||
def _get_cls(self): | ||
return DependencyHDFS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
import os | ||
import sys | ||
|
||
import pytest | ||
|
||
from dvc.output.hdfs import OutputHDFS | ||
from tests.unit.output.test_local import TestOutputLOCAL | ||
|
||
|
||
@pytest.mark.skipif( | ||
sys.version_info[0] == 2 and os.name == "nt", | ||
reason="Not supported for python 2 on Windows.", | ||
) | ||
class TestOutputHDFS(TestOutputLOCAL): | ||
def _get_cls(self): | ||
return OutputHDFS |