-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[processing] Move AlgorithmTests to QgisAlgorithmTests
- Loading branch information
Showing
4 changed files
with
62 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
*************************************************************************** | ||
QgisAlgorithmTests.py | ||
--------------------- | ||
Date : January 2016 | ||
Copyright : (C) 2016 by Matthias Kuhn | ||
Email : matthias@opengis.ch | ||
*************************************************************************** | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
*************************************************************************** | ||
""" | ||
|
||
__author__ = 'Matthias Kuhn' | ||
__date__ = 'January 2016' | ||
__copyright__ = '(C) 2016, Matthias Kuhn' | ||
|
||
# This will get replaced with a git SHA1 when you do a git archive | ||
|
||
__revision__ = ':%H$' | ||
|
||
import AlgorithmsTestBase | ||
|
||
import nose2 | ||
import shutil | ||
|
||
from qgis.testing import ( | ||
start_app, | ||
unittest | ||
) | ||
|
||
|
||
class TestQgisAlgorithms(unittest.TestCase, AlgorithmsTestBase.AlgorithmsTest): | ||
|
||
@classmethod | ||
def setUpClass(cls): | ||
start_app() | ||
from processing.core.Processing import Processing | ||
Processing.initialize() | ||
cls.cleanup_paths = [] | ||
|
||
@classmethod | ||
def tearDownClass(cls): | ||
for path in cls.cleanup_paths: | ||
shutil.rmtree(path) | ||
|
||
def test_definition_file(self): | ||
return 'qgis_algorithm_tests.yaml' | ||
|
||
|
||
if __name__ == '__main__': | ||
nose2.main() |
File renamed without changes.