-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove mock/test solutions for differential build test #139
Conversation
Affects: + Problem300 + Problem301
@ryukinix this case isn't discussed in what I have implemented (removing solutions ) thats why PR build is raising No such file or directory exception. |
Yes, I understand. We need fix that. I'm merging that because we need remove this files, but we need fix that on |
Implements filter_exists function designed to be used with pipelines.
|
There is two type of travis CI events: Pull Requests and Push. Push event occurs when I do In general push events occurs first than PR, since we first make a new branch so then create a PR. We need make some changes later about push events on Travis CI, because for now this is what we have: We got this weird error. |
@lubien |
I'm merging that, but we need fix that weird errors, ok @a-hilaly ? |
stats.py at stats.py uncommited_solutions, uncommited_core_files = handle_files(options.files)
...
df = build_result(df[langs_selected],
options.all,
options.blame,
only=tbsolutions) at _problems = only if only else solutions_paths(df)
for lang, spath in _problems: this is normal since when you deleted 2 problems and then just modified test, only which uncommitted_solutions is empty so _problems is becoming solutions_paths instead ( why causes to build all problems ).
never seen anything like that
Yes sure we need to complete and secure #136 |
Yes, my fault. Sorry. |
I understand now. It is solution design. Thanks for explaining it. Thinking better maybe this behavior is a good thing. (maybe, I'm not sure) |
I know its a bit lego-ed x( , it needs also renaming of many things for better understanding. I will add some changes trying to fix the "lego" maybe this time we have a clearer way |
Affects: