mirror of https://github.com/VLSIDA/OpenRAM.git
Merge branch 'dev' into automated_analytical_model
This commit is contained in:
commit
3f5fd0b6f4
|
|
@ -0,0 +1,55 @@
|
||||||
|
name: ci
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
scn4me_subm:
|
||||||
|
runs-on: self-hosted
|
||||||
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: SCMOS test
|
||||||
|
run: |
|
||||||
|
. /home/github-runner/setup-paths.sh
|
||||||
|
export OPENRAM_HOME="`pwd`/compiler"
|
||||||
|
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
||||||
|
export OPENRAM_TMP="`pwd`/scn4me_subm"
|
||||||
|
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 48 -t scn4m_subm
|
||||||
|
- name: Archive
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: scn4me_subm Archives
|
||||||
|
path: $OPENRAM_TMP/
|
||||||
|
freepdk45:
|
||||||
|
runs-on: self-hosted
|
||||||
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: FreePDK45 test
|
||||||
|
run: |
|
||||||
|
. /home/github-runner/setup-paths.sh
|
||||||
|
export OPENRAM_HOME="`pwd`/compiler"
|
||||||
|
export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech"
|
||||||
|
export OPENRAM_TMP="`pwd`/freepdk45"
|
||||||
|
python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 48 -t freepdk45
|
||||||
|
- name: Archive
|
||||||
|
if: ${{ failure() }}
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: FreePDK45 Archives
|
||||||
|
path: $OPENRAM_TMP/
|
||||||
|
coverage:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: [scn4me_subm, freepdk45]
|
||||||
|
runs-on: self-hosted
|
||||||
|
steps:
|
||||||
|
- name: Coverage stats
|
||||||
|
run: |
|
||||||
|
python3-coverage combine
|
||||||
|
python3-coverage report
|
||||||
|
python3-coverage html -d coverage_html
|
||||||
|
- name: Archive coverage
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: code-coverage-report
|
||||||
|
path: coverage_html/
|
||||||
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
before_script:
|
|
||||||
- . /home/gitlab-runner/setup-paths.sh
|
|
||||||
- export OPENRAM_HOME="`pwd`/compiler"
|
|
||||||
- export OPENRAM_TECH="`pwd`/technology:/home/PDKs/skywater-tech"
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- test
|
|
||||||
- coverage
|
|
||||||
|
|
||||||
freepdk45:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- coverage run -p $OPENRAM_HOME/tests/regress.py -t freepdk45
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- .coverage.*
|
|
||||||
expire_in: 1 week
|
|
||||||
|
|
||||||
scn4m_subm:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- coverage run -p $OPENRAM_HOME/tests/regress.py -t scn4m_subm
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- .coverage.*
|
|
||||||
expire_in: 1 week
|
|
||||||
|
|
||||||
# s8:
|
|
||||||
# stage: test
|
|
||||||
# script:
|
|
||||||
# - coverage run -p $OPENRAM_HOME/tests/regress.py -t s8
|
|
||||||
# artifacts:
|
|
||||||
# paths:
|
|
||||||
# - .coverage.*
|
|
||||||
# expire_in: 1 week
|
|
||||||
|
|
||||||
coverage:
|
|
||||||
stage: coverage
|
|
||||||
script:
|
|
||||||
- coverage combine
|
|
||||||
- coverage report
|
|
||||||
- coverage html -d coverage_html
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- coverage_html
|
|
||||||
expire_in: 1 week
|
|
||||||
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
|
|
||||||
|
|
||||||
|
|
@ -4,13 +4,9 @@
|
||||||
[](./LICENSE)
|
[](./LICENSE)
|
||||||
|
|
||||||
Master:
|
Master:
|
||||||
[](https://github.com/VLSIDA/OpenRAM/commits/master)
|
|
||||||

|
|
||||||
[](https://github.com/VLSIDA/OpenRAM/archive/master.zip)
|
[](https://github.com/VLSIDA/OpenRAM/archive/master.zip)
|
||||||
|
|
||||||
Dev:
|
Dev:
|
||||||
[](https://github.com/VLSIDA/OpenRAM/commits/dev)
|
|
||||||

|
|
||||||
[](https://github.com/VLSIDA/OpenRAM/archive/dev.zip)
|
[](https://github.com/VLSIDA/OpenRAM/archive/dev.zip)
|
||||||
|
|
||||||
An open-source static random access memory (SRAM) compiler.
|
An open-source static random access memory (SRAM) compiler.
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
#
|
#
|
||||||
import os
|
import os
|
||||||
import debug
|
import debug
|
||||||
import globals
|
|
||||||
from globals import OPTS, find_exe, get_tool
|
from globals import OPTS, find_exe, get_tool
|
||||||
from .lib import *
|
from .lib import *
|
||||||
from .delay import *
|
from .delay import *
|
||||||
|
|
@ -32,7 +31,7 @@ if not OPTS.analytical_delay:
|
||||||
if OPTS.spice_exe=="" or OPTS.spice_exe==None:
|
if OPTS.spice_exe=="" or OPTS.spice_exe==None:
|
||||||
debug.error("{0} not found. Unable to perform characterization.".format(OPTS.spice_name), 1)
|
debug.error("{0} not found. Unable to perform characterization.".format(OPTS.spice_name), 1)
|
||||||
else:
|
else:
|
||||||
(OPTS.spice_name,OPTS.spice_exe) = get_tool("spice",["hspice", "ngspice", "ngspice.exe", "xa"])
|
(OPTS.spice_name, OPTS.spice_exe) = get_tool("spice", ["ngspice", "ngspice.exe", "hspice", "xa"])
|
||||||
|
|
||||||
# set the input dir for spice files if using ngspice
|
# set the input dir for spice files if using ngspice
|
||||||
if OPTS.spice_name == "ngspice":
|
if OPTS.spice_name == "ngspice":
|
||||||
|
|
|
||||||
|
|
@ -312,12 +312,12 @@ class stimuli():
|
||||||
cmd = "{0} {1} -c {2}xa.cfg -o {2}xa -mt {3}".format(OPTS.spice_exe,
|
cmd = "{0} {1} -c {2}xa.cfg -o {2}xa -mt {3}".format(OPTS.spice_exe,
|
||||||
temp_stim,
|
temp_stim,
|
||||||
OPTS.openram_temp,
|
OPTS.openram_temp,
|
||||||
OPTS.num_threads)
|
OPTS.num_sim_threads)
|
||||||
valid_retcode=0
|
valid_retcode=0
|
||||||
elif OPTS.spice_name == "hspice":
|
elif OPTS.spice_name == "hspice":
|
||||||
# TODO: Should make multithreading parameter a configuration option
|
# TODO: Should make multithreading parameter a configuration option
|
||||||
cmd = "{0} -mt {1} -i {2} -o {3}timing".format(OPTS.spice_exe,
|
cmd = "{0} -mt {1} -i {2} -o {3}timing".format(OPTS.spice_exe,
|
||||||
OPTS.num_threads,
|
OPTS.num_sim_threads,
|
||||||
temp_stim,
|
temp_stim,
|
||||||
OPTS.openram_temp)
|
OPTS.openram_temp)
|
||||||
valid_retcode=0
|
valid_retcode=0
|
||||||
|
|
@ -326,7 +326,7 @@ class stimuli():
|
||||||
# Measurements can't be made with a raw file set in ngspice
|
# Measurements can't be made with a raw file set in ngspice
|
||||||
# -r {2}timing.raw
|
# -r {2}timing.raw
|
||||||
ng_cfg = open("{}.spiceinit".format(OPTS.openram_temp), "w")
|
ng_cfg = open("{}.spiceinit".format(OPTS.openram_temp), "w")
|
||||||
ng_cfg.write("set num_threads={}\n".format(OPTS.num_threads))
|
ng_cfg.write("set num_threads={}\n".format(OPTS.num_sim_threads))
|
||||||
ng_cfg.close()
|
ng_cfg.close()
|
||||||
|
|
||||||
cmd = "{0} -b -o {2}timing.lis {1}".format(OPTS.spice_exe,
|
cmd = "{0} -b -o {2}timing.lis {1}".format(OPTS.spice_exe,
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ word_size = 32
|
||||||
num_words = 256
|
num_words = 256
|
||||||
write_size = 8
|
write_size = 8
|
||||||
|
|
||||||
local_array_size = 16
|
#local_array_size = 16
|
||||||
|
|
||||||
num_rw_ports = 1
|
num_rw_ports = 1
|
||||||
num_r_ports = 1
|
num_r_ports = 1
|
||||||
|
|
@ -11,9 +11,9 @@ num_w_ports = 0
|
||||||
tech_name = "sky130"
|
tech_name = "sky130"
|
||||||
nominal_corner_only = True
|
nominal_corner_only = True
|
||||||
|
|
||||||
route_supplies = False
|
#route_supplies = False
|
||||||
check_lvsdrc = True
|
check_lvsdrc = True
|
||||||
perimeter_pins = False
|
#perimeter_pins = False
|
||||||
#netlist_only = True
|
#netlist_only = True
|
||||||
#analytical_delay = False
|
#analytical_delay = False
|
||||||
output_name = "sram_{0}rw{1}r{2}w_{3}_{4}_{5}".format(num_rw_ports,
|
output_name = "sram_{0}rw{1}r{2}w_{3}_{4}_{5}".format(num_rw_ports,
|
||||||
|
|
@ -18,6 +18,9 @@ import sys
|
||||||
import re
|
import re
|
||||||
import copy
|
import copy
|
||||||
import importlib
|
import importlib
|
||||||
|
import getpass
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
VERSION = "1.1.9"
|
VERSION = "1.1.9"
|
||||||
NAME = "OpenRAM v{}".format(VERSION)
|
NAME = "OpenRAM v{}".format(VERSION)
|
||||||
|
|
@ -133,6 +136,7 @@ def print_banner():
|
||||||
debug.print_raw("|=========" + user_info.center(60) + "=========|")
|
debug.print_raw("|=========" + user_info.center(60) + "=========|")
|
||||||
dev_info = "Development help: openram-dev-group@ucsc.edu"
|
dev_info = "Development help: openram-dev-group@ucsc.edu"
|
||||||
debug.print_raw("|=========" + dev_info.center(60) + "=========|")
|
debug.print_raw("|=========" + dev_info.center(60) + "=========|")
|
||||||
|
if OPTS.openram_temp:
|
||||||
temp_info = "Temp dir: {}".format(OPTS.openram_temp)
|
temp_info = "Temp dir: {}".format(OPTS.openram_temp)
|
||||||
debug.print_raw("|=========" + temp_info.center(60) + "=========|")
|
debug.print_raw("|=========" + temp_info.center(60) + "=========|")
|
||||||
debug.print_raw("|=========" + "See LICENSE for license info".center(60) + "=========|")
|
debug.print_raw("|=========" + "See LICENSE for license info".center(60) + "=========|")
|
||||||
|
|
@ -154,6 +158,17 @@ def check_versions():
|
||||||
# or, this could be done in each module (e.g. verify, characterizer, etc.)
|
# or, this could be done in each module (e.g. verify, characterizer, etc.)
|
||||||
global OPTS
|
global OPTS
|
||||||
|
|
||||||
|
def cmd_exists(cmd):
|
||||||
|
return subprocess.call("type " + cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0
|
||||||
|
|
||||||
|
if cmd_exists("coverage"):
|
||||||
|
OPTS.coverage_exe = "coverage run -p "
|
||||||
|
elif cmd_exists("python3-coverage"):
|
||||||
|
OPTS.coverage_exe = "python3-coverage run -p "
|
||||||
|
else:
|
||||||
|
OPTS.coverage_exe = ""
|
||||||
|
debug.warning("Failed to find coverage installation. This can be installed with pip3 install coverage")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import coverage
|
import coverage
|
||||||
OPTS.coverage = 1
|
OPTS.coverage = 1
|
||||||
|
|
@ -414,6 +429,10 @@ def setup_paths():
|
||||||
if "__pycache__" not in full_path:
|
if "__pycache__" not in full_path:
|
||||||
sys.path.append("{0}".format(full_path))
|
sys.path.append("{0}".format(full_path))
|
||||||
|
|
||||||
|
# Use a unique temp subdirectory
|
||||||
|
OPTS.openram_temp += "/openram_{0}_{1}_temp/".format(getpass.getuser(),
|
||||||
|
os.getpid())
|
||||||
|
|
||||||
if not OPTS.openram_temp.endswith('/'):
|
if not OPTS.openram_temp.endswith('/'):
|
||||||
OPTS.openram_temp += "/"
|
OPTS.openram_temp += "/"
|
||||||
debug.info(1, "Temporary files saved in " + OPTS.openram_temp)
|
debug.info(1, "Temporary files saved in " + OPTS.openram_temp)
|
||||||
|
|
|
||||||
|
|
@ -74,9 +74,8 @@ class options(optparse.Values):
|
||||||
# If user defined the temporary location in their environment, use it
|
# If user defined the temporary location in their environment, use it
|
||||||
openram_temp = os.path.abspath(os.environ.get("OPENRAM_TMP"))
|
openram_temp = os.path.abspath(os.environ.get("OPENRAM_TMP"))
|
||||||
except:
|
except:
|
||||||
# Else use a unique temporary directory
|
openram_temp = "/tmp"
|
||||||
openram_temp = "/tmp/openram_{0}_{1}_temp/".format(getpass.getuser(),
|
|
||||||
os.getpid())
|
|
||||||
# This is the verbosity level to control debug information. 0 is none, 1
|
# This is the verbosity level to control debug information. 0 is none, 1
|
||||||
# is minimal, etc.
|
# is minimal, etc.
|
||||||
verbose_level = 0
|
verbose_level = 0
|
||||||
|
|
@ -135,6 +134,8 @@ class options(optparse.Values):
|
||||||
|
|
||||||
# Number of threads to use
|
# Number of threads to use
|
||||||
num_threads = 2
|
num_threads = 2
|
||||||
|
# Number of threads to use in ngspice/hspice
|
||||||
|
num_sim_threads = 2
|
||||||
|
|
||||||
# Should we print out the banner at startup
|
# Should we print out the banner at startup
|
||||||
print_banner = True
|
print_banner = True
|
||||||
|
|
|
||||||
|
|
@ -46,12 +46,7 @@ class openram_back_end_test(openram_test):
|
||||||
if OPTS.spice_name:
|
if OPTS.spice_name:
|
||||||
options += " -s {}".format(OPTS.spice_name)
|
options += " -s {}".format(OPTS.spice_name)
|
||||||
|
|
||||||
# Always perform code coverage
|
exe_name = "{0}{1}/openram.py ".format(OPTS.coverage_exe, OPENRAM_HOME)
|
||||||
if OPTS.coverage == 0:
|
|
||||||
debug.warning("Failed to find coverage installation. This can be installed with pip3 install coverage")
|
|
||||||
exe_name = "{0}/openram.py ".format(OPENRAM_HOME)
|
|
||||||
else:
|
|
||||||
exe_name = "coverage run -p {0}/openram.py ".format(OPENRAM_HOME)
|
|
||||||
config_name = "{0}/tests/configs/config_back_end.py".format(OPENRAM_HOME)
|
config_name = "{0}/tests/configs/config_back_end.py".format(OPENRAM_HOME)
|
||||||
cmd = "{0} -o {1} -p {2} {3} {4} 2>&1 > {5}/output.log".format(exe_name,
|
cmd = "{0} -o {1} -p {2} {3} {4} 2>&1 > {5}/output.log".format(exe_name,
|
||||||
out_file,
|
out_file,
|
||||||
|
|
|
||||||
|
|
@ -46,12 +46,7 @@ class openram_front_end_test(openram_test):
|
||||||
if OPTS.spice_name:
|
if OPTS.spice_name:
|
||||||
options += " -s {}".format(OPTS.spice_name)
|
options += " -s {}".format(OPTS.spice_name)
|
||||||
|
|
||||||
# Always perform code coverage
|
exe_name = "{0}{1}/openram.py ".format(OPTS.coverage_exe, OPENRAM_HOME)
|
||||||
if OPTS.coverage == 0:
|
|
||||||
debug.warning("Failed to find coverage installation. This can be installed with pip3 install coverage")
|
|
||||||
exe_name = "{0}/openram.py ".format(OPENRAM_HOME)
|
|
||||||
else:
|
|
||||||
exe_name = "coverage run -p {0}/openram.py ".format(OPENRAM_HOME)
|
|
||||||
config_name = "{0}/tests/configs/config_front_end.py".format(OPENRAM_HOME)
|
config_name = "{0}/tests/configs/config_front_end.py".format(OPENRAM_HOME)
|
||||||
cmd = "{0} -n -o {1} -p {2} {3} {4} 2>&1 > {5}/output.log".format(exe_name,
|
cmd = "{0} -n -o {1} -p {2} {3} {4} 2>&1 > {5}/output.log".format(exe_name,
|
||||||
out_file,
|
out_file,
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,9 @@ import unittest
|
||||||
import sys, os
|
import sys, os
|
||||||
sys.path.append(os.getenv("OPENRAM_HOME"))
|
sys.path.append(os.getenv("OPENRAM_HOME"))
|
||||||
import globals
|
import globals
|
||||||
|
from subunit import ProtocolTestCase, TestProtocolClient
|
||||||
|
from subunit.test_results import AutoTimingTestResultDecorator
|
||||||
|
from testtools import ConcurrentTestSuite
|
||||||
|
|
||||||
(OPTS, args) = globals.parse_args()
|
(OPTS, args) = globals.parse_args()
|
||||||
del sys.argv[1:]
|
del sys.argv[1:]
|
||||||
|
|
@ -39,20 +42,74 @@ all_tests = list(filter(nametest.search, files))
|
||||||
filtered_tests = list(filter(lambda i: i not in skip_tests, all_tests))
|
filtered_tests = list(filter(lambda i: i not in skip_tests, all_tests))
|
||||||
filtered_tests.sort()
|
filtered_tests.sort()
|
||||||
|
|
||||||
|
num_threads = OPTS.num_threads
|
||||||
|
|
||||||
|
|
||||||
|
def partition_unit_tests(suite, num_threads):
|
||||||
|
partitions = [list() for x in range(num_threads)]
|
||||||
|
for index, test in enumerate(suite):
|
||||||
|
partitions[index % num_threads].append(test)
|
||||||
|
return partitions
|
||||||
|
|
||||||
|
|
||||||
|
def fork_tests(num_threads):
|
||||||
|
results = []
|
||||||
|
test_partitions = partition_unit_tests(suite, num_threads)
|
||||||
|
suite._tests[:] = []
|
||||||
|
|
||||||
|
def do_fork(suite):
|
||||||
|
|
||||||
|
for test_partition in test_partitions:
|
||||||
|
test_suite = unittest.TestSuite(test_partition)
|
||||||
|
test_partition[:] = []
|
||||||
|
c2pread, c2pwrite = os.pipe()
|
||||||
|
pid = os.fork()
|
||||||
|
if pid == 0:
|
||||||
|
# PID of 0 is a child
|
||||||
|
try:
|
||||||
|
# Open a stream to write to the parent
|
||||||
|
stream = os.fdopen(c2pwrite, 'wb', 0)
|
||||||
|
os.close(c2pread)
|
||||||
|
sys.stdin.close()
|
||||||
|
test_suite_result = AutoTimingTestResultDecorator(TestProtocolClient(stream))
|
||||||
|
test_suite.run(test_suite_result)
|
||||||
|
except EBADF:
|
||||||
|
try:
|
||||||
|
stream.write(traceback.format_exc())
|
||||||
|
finally:
|
||||||
|
os._exit(1)
|
||||||
|
os._exit(0)
|
||||||
|
else:
|
||||||
|
# PID >0 is the parent
|
||||||
|
# Collect all of the child streams and append to the results
|
||||||
|
os.close(c2pwrite)
|
||||||
|
stream = os.fdopen(c2pread, 'rb', 0)
|
||||||
|
test = ProtocolTestCase(stream)
|
||||||
|
results.append(test)
|
||||||
|
return results
|
||||||
|
return do_fork
|
||||||
|
|
||||||
|
|
||||||
# import all of the modules
|
# import all of the modules
|
||||||
filenameToModuleName = lambda f: os.path.splitext(f)[0]
|
filenameToModuleName = lambda f: os.path.splitext(f)[0]
|
||||||
moduleNames = map(filenameToModuleName, filtered_tests)
|
moduleNames = map(filenameToModuleName, filtered_tests)
|
||||||
modules = map(__import__, moduleNames)
|
modules = map(__import__, moduleNames)
|
||||||
|
|
||||||
suite = unittest.TestSuite()
|
suite = unittest.TestSuite()
|
||||||
load = unittest.defaultTestLoader.loadTestsFromModule
|
load = unittest.defaultTestLoader.loadTestsFromModule
|
||||||
suite.addTests(map(load, modules))
|
suite.addTests(map(load, modules))
|
||||||
|
|
||||||
test_runner = unittest.TextTestRunner(verbosity=2, stream=sys.stderr)
|
test_runner = unittest.TextTestRunner(verbosity=2, stream=sys.stderr)
|
||||||
test_result = test_runner.run(suite)
|
if num_threads == 1:
|
||||||
|
final_suite = suite
|
||||||
|
else:
|
||||||
|
final_suite = ConcurrentTestSuite(suite, fork_tests(num_threads))
|
||||||
|
|
||||||
import verify
|
test_result = test_runner.run(final_suite)
|
||||||
verify.print_drc_stats()
|
|
||||||
verify.print_lvs_stats()
|
# import verify
|
||||||
verify.print_pex_stats()
|
# verify.print_drc_stats()
|
||||||
|
# verify.print_lvs_stats()
|
||||||
|
# verify.print_pex_stats()
|
||||||
|
|
||||||
sys.exit(not test_result.wasSuccessful())
|
sys.exit(not test_result.wasSuccessful())
|
||||||
|
|
|
||||||
|
|
@ -315,6 +315,7 @@ def header(filename, technology):
|
||||||
print("|=========" + technology.center(60) + "=========|")
|
print("|=========" + technology.center(60) + "=========|")
|
||||||
print("|=========" + filename.center(60) + "=========|")
|
print("|=========" + filename.center(60) + "=========|")
|
||||||
from globals import OPTS
|
from globals import OPTS
|
||||||
|
if OPTS.openram_temp:
|
||||||
print("|=========" + OPTS.openram_temp.center(60) + "=========|")
|
print("|=========" + OPTS.openram_temp.center(60) + "=========|")
|
||||||
print("|==============================================================================|")
|
print("|==============================================================================|")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
scikit-learn>=0.22.2
|
||||||
|
coverage>=4.5.2
|
||||||
|
scipy>=1.3.3
|
||||||
|
numpy>=1.17.4
|
||||||
|
python-subunit>=1.4.0
|
||||||
|
unittest2>=1.1.0
|
||||||
Loading…
Reference in New Issue