Config file
1 unresolved thread
1 unresolved thread
Fixes #28 (closed)
Merge request reports
Activity
The build that failed https://gitlab.idiap.ch/bob/bob.bio.base/builds/10841 it is probably because of broken wheels it should get fixed when nightlies are fixed.
mentioned in issue #28 (closed)
https://gitlab.idiap.ch/bob/bob.bio.base/builds/10798 fails because of:
OSError: [Errno 28] No space left on device
- bob/bio/base/test/test_config_file.py 0 → 100644
43 'database', 44 'preprocessor', 45 'extractor', 46 'algorithm', 47 ) 48 49 for attr in [k for k in dir(args_file) if not k.startswith('_')]: 50 if attr in skip_check: continue 51 assert hasattr(args_cmdline, attr) 52 attr_cmdline = getattr(args_cmdline, attr) 53 attr_file = getattr(args_file, attr) 54 if (isinstance(attr_file, (bool, str, int, list))) or (attr_file is None): 55 assert attr_cmdline == attr_file, '(%s) %r != %r' % \ 56 (attr, attr_cmdline, attr_file) 57 else: 58 print '(%s) %r == %r?' % (attr, attr_cmdline, attr_file), Added 1 commit:
- 3ed8d9bb - Fix py3 compatibility issue
Added 1 commit:
- bfd4ae32 - Better fix w/o leaving something untested
Added 1 commit:
- bd1a8af8 - Use string mode to open tempfile for py3 compat
Very well, the builds are passing now - could you please merge if all looks good, @mguenther?
mentioned in commit 4f3c96b9
Please register or sign in to reply