ibllib.tests.qc.test_alignment_qc

Classes

TestAlignmentQcExisting

TestAlignmentQcManual

TestChronicTracingQC

TestTracingQc

TestUploadToFlatIron

class TestTracingQc(methodName='runTest')[source]

Bases: TestCase

probe01_id = None
probe00_id = None
classmethod setUpClass() None[source]

Hook method for setting up class fixture before running tests in the class.

test_tracing_exists()[source]
test_tracing_not_exists()[source]
classmethod tearDownClass() None[source]

Hook method for deconstructing the class fixture after running all tests in the class.

class TestChronicTracingQC(methodName='runTest')[source]

Bases: TestCase

classmethod setUpClass() None[source]

Hook method for setting up class fixture before running tests in the class.

test_tracing_exists()[source]
test_tracing_not_exists()[source]
classmethod tearDownClass() None[source]

Hook method for deconstructing the class fixture after running all tests in the class.

class TestAlignmentQcExisting(methodName='runTest')[source]

Bases: TestCase

probe_id = None
prev_traj_id = None
eid = None
alignments = None
xyz_picks = None
trajectory = None
classmethod setUpClass() None[source]

Hook method for setting up class fixture before running tests in the class.

test_alignments()[source]
classmethod tearDownClass() None[source]

Hook method for deconstructing the class fixture after running all tests in the class.

class TestAlignmentQcManual(methodName='runTest')[source]

Bases: TestCase

probe_id = None
prev_traj_id = None
eid = None
alignments = None
xyz_picks = None
trajectory = None
classmethod setUpClass() None[source]

Hook method for setting up class fixture before running tests in the class.

test_alignments()[source]
classmethod tearDownClass() None[source]

Hook method for deconstructing the class fixture after running all tests in the class.

class TestUploadToFlatIron(methodName='runTest')[source]

Bases: TestCase

probe_id = None
alignments = None
xyz_picks = None
trajectory = None
setUpClass

classmethod(function) -> method

Convert a function to be a class method.

A class method receives the class as implicit first argument, just like an instance method receives the instance. To declare a class method, use this idiom:

class C:

@classmethod def f(cls, arg1, arg2, …):

It can be called either on the class (e.g. C.f()) or on an instance (e.g. C().f()). The instance is ignored except for its class. If a class method is called for a derived class, the derived class object is passed as the implied first argument.

Class methods are different than C++ or Java static methods. If you want those, see the staticmethod builtin.

test_data_content()[source]
test_upload_to_flatiron()[source]
classmethod tearDownClass() None[source]

Hook method for deconstructing the class fixture after running all tests in the class.