Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -244,18 +244,6 @@ function Purge() {
}

switch -wildcard ($target) {
# debug targets
"restore-debug" { Main "RestoreReferences" "Debug" }
"debug" { Main "Build" "Debug" }
"clean-debug" { Main "Clean" "Debug" }
"stage-debug" { Main "Stage" "Debug" }
"package-debug" { Main "Package" "Debug" }
"test-debug-*" { Test $target.Substring(11) "Debug" $frameworks $platform; break }
"test-debug" { Test "all" "Debug" $frameworks $platform; break }

# release targets
"release" { Main "Build" "Release" }

# general targets
"restore" { Main "RestoreReferences" $configuration }
"build" { Main "Build" $configuration }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@

#if FEATURE_PROCESS

#if PYTHON_34 // rename to _signal in 3.5
[assembly: PythonModule("signal", typeof(IronPython.Modules.PythonSignal))]
#else
[assembly: PythonModule("_signal", typeof(IronPython.Modules.PythonSignal))]
#endif
namespace IronPython.Modules {
public static partial class PythonSignal {
public const string __doc__ = """
Expand Down
2 changes: 1 addition & 1 deletion src/core/IronPython.StdLib/lib/unittest/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def loadTestsFromTestCase(self, testCaseClass):
loaded_suite = self.suiteClass(map(testCaseClass, testCaseNames))
return loaded_suite

def loadTestsFromModule(self, module, use_load_tests=True):
def loadTestsFromModule(self, module, use_load_tests=True, **kws): # ironpython: add kws to accept pattern for load_tests
"""Return a suite of all tests cases contained in the given module"""
tests = []
for name in dir(module):
Expand Down
Loading