File tree Expand file tree Collapse file tree 2 files changed +10
-30
lines changed Expand file tree Collapse file tree 2 files changed +10
-30
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
2+
3+ # This script is currently unused for this ropo.
4+ # It's content essentially doubles that of the other content test scripts,
5+ # but it only tests practice exercises and fails out if any of them
6+ # are missing templates. It needs to be modified to gracefully ignore
7+ # (or otherwise test) those exercises that do not have canonical data.
8+ # We're leaving it here as a potential starting place for
9+ # further checks or testing.
10+
11+
212import argparse
313from argparse import Namespace
414from enum import IntEnum , auto
1727
1828PROBLEM_SPEC_REPO = "https://github.com/exercism/problem-specifications.git"
1929DEFAULT_SPEC_LOCATION = Path (".problem-specifications" )
20- # DEFAULT_SPEC_LOCATION = Path(".problem-specifications")
2130
2231logging .basicConfig (format = "%(levelname)s:%(message)s" )
2332logger = logging .getLogger ("generator" )
You can’t perform that action at this time.
0 commit comments