-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Wexler"
committed
Dec 10, 2015
1 parent
a1c5376
commit 4daacc5
Showing
19 changed files
with
2,068 additions
and
34 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# Copyright (c) 2015, Prometheus Research, LLC | ||
# | ||
|
||
title: RIOS.CONVERTER | ||
tests: | ||
# check Python source syntax and style | ||
- sh: flake8 ./src/ | ||
|
||
- sh: pip install --quiet coverage nose | ||
ignore: true | ||
|
||
- rmdir: ./tests/sandbox | ||
- mkdir: ./tests/sandbox | ||
|
||
- sh: nosetests --quiet | ||
ignore: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# | ||
# This file contains expected test output data generated by PBBT. | ||
# | ||
--- | ||
suite: rios.converter | ||
tests: | ||
- sh: flake8 ./src/ | ||
stdout: '' | ||
- sh: pip install --quiet coverage nose | ||
stdout: '' | ||
- sh: nosetests --quiet | ||
stdout: | | ||
Coverage.py warning: Module rios.converter was never imported. | ||
Name Stmts Miss Cover Missing | ||
------------------------------------- | ||
nose.plugins.cover: WARNING: Failed to generate HTML report: No data to report. | ||
---------------------------------------------------------------------- | ||
Ran 0 tests in 0.005s | ||
OK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,36 @@ | ||
# coverage.py configuration | ||
[run] | ||
source = rios.converter | ||
branch = True | ||
data_file = ./build/coverage/coverage.dat | ||
parallel = True | ||
[report] | ||
exclude_lines = | ||
raise NotImplementedError | ||
return "REQUIRED" | ||
# setuptools configuration | ||
[bdist_wheel] | ||
universal=1 | ||
|
||
# Prospector configuration | ||
[prospector] | ||
output_format = grouped | ||
profile = .prospector.yaml | ||
messages_only = true | ||
autodetect = false | ||
|
||
# Nose configuration | ||
[nosy] | ||
base_path = ./ | ||
glob_patterns = *.py *.json | ||
[nosetests] | ||
with-coverage=1 | ||
cover-package=rios.converter | ||
cover-erase=1 | ||
cover-branches=1 | ||
cover-html=1 | ||
cover-html-dir=build/coverage | ||
nocapture=1 | ||
|
||
# PBBT configuration | ||
#[pbbt] | ||
#input = test/input.yaml | ||
#output = test/output.yaml | ||
[pbbt] | ||
input = pbbt-input.yaml | ||
output = pbbt-output.yaml | ||
max_errors = 1 | ||
|
||
# Sphinx configuration | ||
[build_sphinx] | ||
build_dir = build/doc | ||
|
||
[flake8] | ||
ignore = E123,E126,E127,E202,E241,E402,W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,3 @@ | |
|
||
|
||
__import__('pkg_resources').declare_namespace(__name__) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.