-
Notifications
You must be signed in to change notification settings - Fork 8
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 #346 from pyiron/test_copyright
Remove copyright notice from tests
- Loading branch information
Showing
10 changed files
with
0 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import unittest | ||
from jinja2.exceptions import TemplateSyntaxError | ||
from pysqa import QueueAdapter | ||
from pysqa.base.config import QueueAdapterWithConfig | ||
from pysqa.base.validate import value_in_range | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class TestQueueAdapter(unittest.TestCase): | ||
@classmethod | ||
|
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,8 +1,4 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
from time import sleep | ||
import unittest | ||
|
||
import pandas | ||
|
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,19 +1,8 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import pandas | ||
import unittest | ||
from pysqa import QueueAdapter | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
df_queue_status = pandas.DataFrame( | ||
{ | ||
"cluster": ["Mycluster", "Mycluster", "Mycluster", "Mycluster", "Mycluster"], | ||
|
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,21 +1,10 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import unittest | ||
|
||
import pandas | ||
|
||
from pysqa import QueueAdapter | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class TestLsfQueueAdapter(unittest.TestCase): | ||
@classmethod | ||
|
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,18 +1,7 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import unittest | ||
from pysqa import QueueAdapter | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class TestMoabQueueAdapter(unittest.TestCase): | ||
@classmethod | ||
|
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,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import unittest | ||
from pysqa import QueueAdapter | ||
|
@@ -14,15 +11,6 @@ | |
skip_multi_test = True | ||
|
||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
@unittest.skipIf( | ||
skip_multi_test, | ||
"Either paramiko or tqdm are not installed, so the multi queue adapter tests are skipped.", | ||
|
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,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import unittest | ||
from pysqa import QueueAdapter | ||
|
@@ -14,15 +11,6 @@ | |
skip_remote_test = True | ||
|
||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
@unittest.skipIf( | ||
skip_remote_test, | ||
"Either paramiko or tqdm are not installed, so the remote queue adapter tests are skipped.", | ||
|
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,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import pandas | ||
import unittest | ||
|
@@ -15,14 +12,6 @@ | |
except ImportError: | ||
skip_sge_test = True | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
@unittest.skipIf( | ||
skip_sge_test, | ||
|
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,20 +1,9 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import pandas | ||
import unittest | ||
import getpass | ||
from pysqa import QueueAdapter | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
df_queue_status = pandas.DataFrame( | ||
{ | ||
|
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,19 +1,8 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
import pandas | ||
import unittest | ||
from pysqa import QueueAdapter | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.1" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class TestTorqueQueueAdapter(unittest.TestCase): | ||
@classmethod | ||
|