Added tests for skeleton module
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Jef Roosens 2021-04-26 19:57:54 +02:00
parent 2d06c7feeb
commit c436e12b46
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
9 changed files with 69 additions and 15 deletions

View file

@ -1,6 +1,4 @@
"""The main entrypoint of the program."""
import argparse
import sys
from parser import read_specs_file

View file

@ -1,6 +1,4 @@
"""Module handling IFTTT notifications."""
from typing import List
import os
import requests

View file

@ -1,6 +1,4 @@
"""Handles parsing a config file from disk."""
import yaml
from pathlib import Path
from typing import List, Union

View file

@ -1,6 +1,4 @@
"""Module defining a directory-based spec."""
from .spec import Spec
from pathlib import Path
from typing import Union

View file

@ -1,7 +1,4 @@
"""This module contains the base Spec class."""
from pathlib import Path
from typing import Union, Dict
import skeleton
import os

View file

@ -1,6 +1,4 @@
"""Module defining a Docker volume-based spec."""
from .spec import Spec
from typing import Union
from pathlib import Path