Skip to content

Commit 0a4055f

Browse files
committed
Add package name
1 parent 6d265d1 commit 0a4055f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

qgis_processing/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name = "trajectools"
2+
__version__ = "2.7.2"

tests/test_core.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from qgis_processing.trajectoolsProvider import TrajectoolsProvider
2+
3+
4+
def test_name():
5+
provider = TrajectoolsProvider()
6+
assert provider.name() == "Trajectools"
7+

tests/test_utils.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import sys
21
from qgis.core import QgsGeometry, QgsVectorLayer
3-
4-
sys.path.append("..")
5-
62
from qgis_processing.qgisUtils import tc_from_pt_layer
73

84

0 commit comments

Comments
 (0)