summaryrefslogtreecommitdiff
path: root/lib/spack/spack/reporters/base.py
blob: 31cb02f1751c82d0e0943d0592f87f78fab615ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from typing import Any, Dict, List


class Reporter:
    """Base class for report writers."""

    def build_report(self, filename: str, specs: List[Dict[str, Any]]):
        raise NotImplementedError("must be implemented by derived classes")

    def test_report(self, filename: str, specs: List[Dict[str, Any]]):
        raise NotImplementedError("must be implemented by derived classes")

    def concretization_report(self, filename: str, msg: str):
        raise NotImplementedError("must be implemented by derived classes")