-
Notifications
You must be signed in to change notification settings - Fork 63
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
Fix #181:Introduce pretty print and pager output for challenges #197
Merged
+40
−10
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
5fabd6d
pretty print task
RohanSreelesh 4184fa5
Add files via upload
RohanSreelesh 07a7309
Update requirements.txt
RohanSreelesh 35aaa41
Add files via upload
RohanSreelesh f164cf6
Add files via upload
RohanSreelesh 01dd808
Delete challenges.py
RohanSreelesh 7a8fba4
Update challenges.py
RohanSreelesh c93df7f
Update requirements.txt
RohanSreelesh 17f1573
Update setup.py
RohanSreelesh ace5eda
Update challenges.py
RohanSreelesh 5d7817b
Update challenges.py
RohanSreelesh 876ca16
Update challenges.py
RohanSreelesh c5c7358
Update challenges.py
RohanSreelesh 8360b33
Update requirements.txt
RohanSreelesh c91ac2d
Update setup.py
RohanSreelesh f1a138b
trying to add test
RohanSreelesh 94cd77d
fixed flask8 errors
RohanSreelesh 2792729
flake8 errors
RohanSreelesh f253581
changed str(table) to table
RohanSreelesh 814ecfe
Update test_challenges.py
RohanSreelesh f28c567
Update test_challenges.py
RohanSreelesh 53613ef
Update test_auth.py
RohanSreelesh 9a32a59
Update test_auth.py
RohanSreelesh 41d8b11
Update requirements.txt
RohanSreelesh 0ca7510
Add files via upload
RohanSreelesh 67eb9c3
Update requirements.txt
RohanSreelesh 4007d16
Update requirements.txt
RohanSreelesh e7d5556
Add files via upload
RohanSreelesh f12a086
Add files via upload
RohanSreelesh 1ca6ff4
Update requirements.txt
RohanSreelesh c771e65
Add files via upload
RohanSreelesh e72fd1e
Update setup.py
RohanSreelesh 18caa2f
Update setup.py
RohanSreelesh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
beautifulsoup4==4.7.1 | ||
beautifultable==0.7.0 | ||
boto==2.49.0 | ||
boto3==1.9.88 | ||
botocore==1.12.116 | ||
click==6.7 | ||
coverage==4.5.1 | ||
coveralls==1.3.0 | ||
docker==3.6.0 | ||
flake8==3.0.4 | ||
lxml==4.2.1 | ||
pre-commit==1.14.4 | ||
pytest==3.5.1 | ||
pytest-cov==2.5.1 | ||
python-dateutil==2.7.3 | ||
requests==2.20.0 | ||
requests-toolbelt==0.8.0 | ||
responses==0.9.0 | ||
validators==0.12.2 | ||
beautifulsoup4==4.7.1 | ||
beautifultable==0.7.0 | ||
boto==2.49.0 | ||
boto3==1.9.88 | ||
botocore==1.12.116 | ||
click==6.7 | ||
coverage==4.5.1 | ||
coveralls==1.3.0 | ||
docker==3.6.0 | ||
flake8==3.0.4 | ||
|
||
pre-commit==1.14.4 | ||
pytest==3.5.1 | ||
pytest-cov==2.5.1 | ||
python-dateutil==2.7.3 | ||
requests==2.20.0 | ||
requests-toolbelt==0.8.0 | ||
responses==0.9.0 | ||
validators==0.12.2 | ||
termcolor==1.1.0 | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove this extra line. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RohanSreelesh Why is lxml removed as a dependency in this commit?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My build wasnt installing , then @yashdusing on gitter suggested removing this from requirements and setup.py after which I was able to install it successfully
The error can be found here https://imgur.com/g4wefJP
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some development libraries are missing in the python package related to lxml, thus the package was not installing. You can find more details here.
We cannot remove it from the requirements as it would break some other parts of the code(for example, the build fails as the lmxl based tests are not passing).
The issue exists on windows due to the version of lxml (please refer to the second answer on the link about. maybe you could update the version of lxml in requirements.txt and try reinstalling on windows to resolve the issue.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understand , I had done the solutions given in the link including the second answer but the build still didnt work for me unfortunately. I'll add it back
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added lxml back into requirements and setup.py but the build is still failing @pushkalkatara
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The build is failing due to some more issues. You can get all the details here.