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 1
1
#!/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
+
2
12
import argparse
3
13
from argparse import Namespace
4
14
from enum import IntEnum , auto
17
27
18
28
PROBLEM_SPEC_REPO = "https://github.com/exercism/problem-specifications.git"
19
29
DEFAULT_SPEC_LOCATION = Path (".problem-specifications" )
20
- # DEFAULT_SPEC_LOCATION = Path(".problem-specifications")
21
30
22
31
logging .basicConfig (format = "%(levelname)s:%(message)s" )
23
32
logger = logging .getLogger ("generator" )
You can’t perform that action at this time.
0 commit comments