We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6705c13 commit 0c7054dCopy full SHA for 0c7054d
tests/test_cli.py
@@ -1,11 +1,10 @@
1
# -*- coding: utf-8 -*-
2
from os.path import exists
3
-
4
from click.testing import CliRunner
5
6
from overpass.cli import cli
+from nose.tools import nottest
7
8
+@nottest
9
def test_cli():
10
runner = CliRunner()
11
with runner.isolated_filesystem():
@@ -17,7 +16,7 @@ def test_cli():
17
16
assert result.exit_code == 0
18
assert exists('out.geojson')
19
20
21
def test_cli_xml():
22
23
0 commit comments