Skip to content

Commit

Permalink
Mark abstract methods as such
Browse files Browse the repository at this point in the history
  • Loading branch information
cameel committed Jul 20, 2023
1 parent ebf789d commit 14965f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/externalTests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import re
import subprocess
import sys
from abc import ABCMeta
from abc import abstractmethod, ABCMeta
from argparse import ArgumentParser
from dataclasses import dataclass, field
from enum import Enum
Expand Down Expand Up @@ -115,16 +115,19 @@ def clean(self):
rmtree(self.tmp_dir)

@on_local_test_dir
@abstractmethod
def configure(self, presets: List[SettingsPreset]):
# TODO: default to hardhat # pylint: disable=fixme
raise NotImplementedError()

@on_local_test_dir
@abstractmethod
def compile(self, preset: SettingsPreset):
# TODO: default to hardhat # pylint: disable=fixme
raise NotImplementedError()

@on_local_test_dir
@abstractmethod
def run_test(self):
# TODO: default to hardhat # pylint: disable=fixme
raise NotImplementedError()
Expand Down

0 comments on commit 14965f9

Please sign in to comment.