Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove copyright notice from tests #346

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions tests/test_basic.py
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
Expand Down
4 changes: 0 additions & 4 deletions tests/test_flux.py
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
Expand Down
11 changes: 0 additions & 11 deletions tests/test_gent.py
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"],
Expand Down
11 changes: 0 additions & 11 deletions tests/test_lsf.py
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
Expand Down
11 changes: 0 additions & 11 deletions tests/test_moab.py
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
Expand Down
12 changes: 0 additions & 12 deletions tests/test_multi.py
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
Expand All @@ -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.",
Expand Down
12 changes: 0 additions & 12 deletions tests/test_remote.py
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
Expand All @@ -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.",
Expand Down
11 changes: 0 additions & 11 deletions tests/test_sge.py
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
Expand All @@ -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,
Expand Down
11 changes: 0 additions & 11 deletions tests/test_slurm.py
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(
{
Expand Down
11 changes: 0 additions & 11 deletions tests/test_torque.py
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
Expand Down
Loading