이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
가입하기
로그인
SisMaker
/
rebar3
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
Projects
0
릴리즈
62
위키
활동
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1429
커밋
12
브랜치
11 MiB
트리:
99fe270e59
compile-type
hex_core
master
multi-pkg-dir
revert-1813-certifi-2.3.1
revert-2195-otp-23-master-compat-part2
revert-ebin_modules
rm-app_compilers-env
symlink_or_create_appsubdirs
v3.13
v3.13.1
xrl-yrl-recompile
3.14.3
3.14.2
3.14.1
3.14.0
3.14.0-rc2
3.14.0-rc1
3.13.2
3.13.1
3.13.0
3.12.0
3.11.1
3.11.0
3.10.0
3.9.1
3.9.0
3.8.0
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.7.0-rc2
3.7.0-rc1
3.6.2
3.6.1
3.6.0
3.5.3
3.5.2
3.5.1
3.5.0
3.4.7
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.2.0
3.1.1
3.1.0
3.0.0
3.0.0-beta.4
3.0.0-beta.3
beta-4
beta-2
beta-1
alpha-6
alpha-5
alpha-4
alpha-3
alpha-2
alpha-1
alpha
브랜치
태그
${ item.name }
${ searchTerm }
브랜치 생성
from '99fe270e59'
${ noResults }
rebar3
/
inttest
/
code_path_no_recurse
/
rebar.config
1 line
25 B
Raw
Normal View
히스토리
Fix #267 (code path regression) Since the introduction of -r/--recursive, deps were not properly added to the code path when running ct, eunit, etc. To fix that, pass a flag down to process_dir1 and conditionalize execution of the command. This moves the decision into process_dir1 where we can decide to invoke preprocess/2 and postprocess/2 but not execute the command. Without this fix, you'd have to, for example, invoke 'rebar -r ct skip_deps=true', if you wanted to run base_dir's ct suites with deps on the code path (while skipping all non-base_dir ct suites). So, with this patch applied, if you run $ rebar ct deps will be on the code path, and only base_dir's ct suites will be tested. If you want to test ct suites in base_dir and sub_dirs, you have to run $ rebar -r ct skip_deps=true If you want to test ct suites in all dirs, you have to run $ rebar -r ct The fix is not specific to ct and applies to all commands. To be able to add inttest/code_path_no_recurse/deps, I had to fix .gitignore. While at it, I've updated and fixed all entries.
11 년 전
{deps, [{foodep, "1"}]}.