No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
05a3ad4
... +1 ...
9275a7c
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
27 | 27 | ||
28 | 28 | class BaseResultORM(Base): |
|
29 | 29 | """ |
|
30 | - | Abstract Base class for ResultORMs and ProcedureORMs |
|
30 | + | Abstract Base class for ResultORMs and ProcedureORMs |
|
31 | 31 | """ |
|
32 | 32 | ||
33 | 33 | __tablename__ = "base_result" |
118 | 118 | ||
119 | 119 | class ResultORM(BaseResultORM): |
|
120 | 120 | """ |
|
121 | - | Hold the result of an atomic single calculation |
|
121 | + | Hold the result of an atomic single calculation |
|
122 | 122 | """ |
|
123 | 123 | ||
124 | 124 | __tablename__ = "result" |
176 | 176 | ||
177 | 177 | class ProcedureMixin: |
|
178 | 178 | """ |
|
179 | - | A procedure mixin to be used by specific procedure types |
|
179 | + | A procedure mixin to be used by specific procedure types |
|
180 | 180 | """ |
|
181 | 181 | ||
182 | 182 | program = Column(String(100), nullable=False) |
211 | 211 | ||
212 | 212 | class OptimizationProcedureORM(ProcedureMixin, BaseResultORM): |
|
213 | 213 | """ |
|
214 | - | An Optimization procedure |
|
214 | + | An Optimization procedure |
|
215 | 215 | """ |
|
216 | 216 | ||
217 | 217 | __tablename__ = "optimization_procedure" |
422 | 422 | ||
423 | 423 | class TorsionDriveProcedureORM(ProcedureMixin, BaseResultORM): |
|
424 | 424 | """ |
|
425 | - | A torsion drive procedure |
|
425 | + | A torsion drive procedure |
|
426 | 426 | """ |
|
427 | 427 | ||
428 | 428 | __tablename__ = "torsiondrive_procedure" |
49 | 49 | ||
50 | 50 | def provenance_stamp(routine): |
|
51 | 51 | """Return dictionary satisfying QCSchema, |
|
52 | - | generating routine's name is passed in through `routine`. |
|
52 | + | generating routine's name is passed in through `routine`. |
|
53 | 53 | ||
54 | - | """ |
|
54 | + | """ |
|
55 | 55 | return {"creator": "QCFractal", "version": get_information("version"), "routine": routine} |
23 | 23 | ||
24 | 24 | ||
25 | 25 | class ParslAdapter(BaseAdapter): |
|
26 | - | """An Adapter for Parsl. |
|
27 | - | """ |
|
26 | + | """An Adapter for Parsl.""" |
|
28 | 27 | ||
29 | 28 | def __init__(self, client: Any, logger: Optional[logging.Logger] = None, **kwargs): |
|
30 | 29 | BaseAdapter.__init__(self, client, logger, **kwargs) |
Files | Coverage |
---|---|
qcfractal | 88.13% |
Project Totals (67 files) | 88.13% |
9275a7c
#616
4284dc1
05a3ad4