https://github.com/Microsoft/CNTK
Revision d2ff41272d42b6484bb56c026fd9f647f0a2dc83 authored by Bowen Bao on 24 August 2018, 04:38:48 UTC, committed by Bowen Bao on 24 August 2018, 08:27:45 UTC
- This is due to an issue on Windows CI introduced by adding onnx dependencies. These tests are temporarily disabled to not block CI while we investigate.
- Disable CNTKv2Python/Tutorial/205
- Disable CNTKv2Python/Keras
1 parent a26e542
Raw File
Tip revision: d2ff41272d42b6484bb56c026fd9f647f0a2dc83 authored by Bowen Bao on 24 August 2018, 04:38:48 UTC
temporarily disable 2 tests on Windows.
Tip revision: d2ff412
.clang-format
---
# Requires clang-format version 3.7.1 or later
Language: Cpp
AlignConsecutiveAssignments: false
AlignEscapedNewlinesLeft: true
AlignTrailingComments: true 
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakTemplateDeclarations: true
AccessModifierOffset: -4
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: false
ColumnLimit: 0
ConstructorInitializerAllOnOneLineOrOnePerLine: true
DerivePointerAlignment: true
ForEachMacros: [ BOOST_FOREACH, foreach_column, foreach_coord, foreach_index, foreach_row, foreach_row_in_submat ]
IndentWidth: 4
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
PointerAlignment: Left
SpaceAfterCStyleCast: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SortIncludes: false
Standard: Cpp11
TabWidth: 4
UseTab: Never
...

back to top