Skip to content

Commit 4bc7b9b

Browse files
authored
Merge pull request #346 from pyiron/test_copyright
Remove copyright notice from tests
2 parents 043358c + f83ba5b commit 4bc7b9b

File tree

10 files changed

+0
-105
lines changed

10 files changed

+0
-105
lines changed

tests/test_basic.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import unittest
63
from jinja2.exceptions import TemplateSyntaxError
74
from pysqa import QueueAdapter
85
from pysqa.base.config import QueueAdapterWithConfig
96
from pysqa.base.validate import value_in_range
107

11-
__author__ = "Jan Janssen"
12-
__copyright__ = "Copyright 2019, Jan Janssen"
13-
__version__ = "0.0.1"
14-
__maintainer__ = "Jan Janssen"
15-
__email__ = "janssen@mpie.de"
16-
__status__ = "production"
17-
__date__ = "Feb 9, 2019"
18-
198

209
class TestQueueAdapter(unittest.TestCase):
2110
@classmethod

tests/test_flux.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
5-
from time import sleep
62
import unittest
73

84
import pandas

tests/test_gent.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import pandas
63
import unittest
74
from pysqa import QueueAdapter
85

9-
__author__ = "Jan Janssen"
10-
__copyright__ = "Copyright 2019, Jan Janssen"
11-
__version__ = "0.0.1"
12-
__maintainer__ = "Jan Janssen"
13-
__email__ = "janssen@mpie.de"
14-
__status__ = "production"
15-
__date__ = "Feb 9, 2019"
16-
176
df_queue_status = pandas.DataFrame(
187
{
198
"cluster": ["Mycluster", "Mycluster", "Mycluster", "Mycluster", "Mycluster"],

tests/test_lsf.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import unittest
63

74
import pandas
85

96
from pysqa import QueueAdapter
107

11-
__author__ = "Jan Janssen"
12-
__copyright__ = "Copyright 2019, Jan Janssen"
13-
__version__ = "0.0.1"
14-
__maintainer__ = "Jan Janssen"
15-
__email__ = "janssen@mpie.de"
16-
__status__ = "production"
17-
__date__ = "Feb 9, 2019"
18-
198

209
class TestLsfQueueAdapter(unittest.TestCase):
2110
@classmethod

tests/test_moab.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import unittest
63
from pysqa import QueueAdapter
74

8-
__author__ = "Jan Janssen"
9-
__copyright__ = "Copyright 2019, Jan Janssen"
10-
__version__ = "0.0.1"
11-
__maintainer__ = "Jan Janssen"
12-
__email__ = "janssen@mpie.de"
13-
__status__ = "production"
14-
__date__ = "Feb 9, 2019"
15-
165

176
class TestMoabQueueAdapter(unittest.TestCase):
187
@classmethod

tests/test_multi.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import unittest
63
from pysqa import QueueAdapter
@@ -14,15 +11,6 @@
1411
skip_multi_test = True
1512

1613

17-
__author__ = "Jan Janssen"
18-
__copyright__ = "Copyright 2019, Jan Janssen"
19-
__version__ = "0.0.1"
20-
__maintainer__ = "Jan Janssen"
21-
__email__ = "janssen@mpie.de"
22-
__status__ = "production"
23-
__date__ = "Feb 9, 2019"
24-
25-
2614
@unittest.skipIf(
2715
skip_multi_test,
2816
"Either paramiko or tqdm are not installed, so the multi queue adapter tests are skipped.",

tests/test_remote.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import unittest
63
from pysqa import QueueAdapter
@@ -14,15 +11,6 @@
1411
skip_remote_test = True
1512

1613

17-
__author__ = "Jan Janssen"
18-
__copyright__ = "Copyright 2019, Jan Janssen"
19-
__version__ = "0.0.1"
20-
__maintainer__ = "Jan Janssen"
21-
__email__ = "janssen@mpie.de"
22-
__status__ = "production"
23-
__date__ = "Feb 9, 2019"
24-
25-
2614
@unittest.skipIf(
2715
skip_remote_test,
2816
"Either paramiko or tqdm are not installed, so the remote queue adapter tests are skipped.",

tests/test_sge.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import pandas
63
import unittest
@@ -15,14 +12,6 @@
1512
except ImportError:
1613
skip_sge_test = True
1714

18-
__author__ = "Jan Janssen"
19-
__copyright__ = "Copyright 2019, Jan Janssen"
20-
__version__ = "0.0.1"
21-
__maintainer__ = "Jan Janssen"
22-
__email__ = "janssen@mpie.de"
23-
__status__ = "production"
24-
__date__ = "Feb 9, 2019"
25-
2615

2716
@unittest.skipIf(
2817
skip_sge_test,

tests/test_slurm.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import pandas
63
import unittest
74
import getpass
85
from pysqa import QueueAdapter
96

10-
__author__ = "Jan Janssen"
11-
__copyright__ = "Copyright 2019, Jan Janssen"
12-
__version__ = "0.0.1"
13-
__maintainer__ = "Jan Janssen"
14-
__email__ = "janssen@mpie.de"
15-
__status__ = "production"
16-
__date__ = "Feb 9, 2019"
17-
187

198
df_queue_status = pandas.DataFrame(
209
{

tests/test_torque.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
# coding: utf-8
2-
# Copyright (c) Jan Janssen
3-
41
import os
52
import pandas
63
import unittest
74
from pysqa import QueueAdapter
85

9-
__author__ = "Jan Janssen"
10-
__copyright__ = "Copyright 2019, Jan Janssen"
11-
__version__ = "0.0.1"
12-
__maintainer__ = "Jan Janssen"
13-
__email__ = "janssen@mpie.de"
14-
__status__ = "production"
15-
__date__ = "Feb 9, 2019"
16-
176

187
class TestTorqueQueueAdapter(unittest.TestCase):
198
@classmethod

0 commit comments

Comments
 (0)