Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
604403d
Add skip test functionality
praveenkumar May 21, 2014
17860f1
Moves license to a separated file
lucrib Oct 30, 2015
13008c8
Moves the how to use to the README file
lucrib Oct 30, 2015
758738b
Moves change history to CHANGE_HISTORY file
lucrib Oct 30, 2015
4211669
Refactor the HTMLTestRunner.py according to PEP8
lucrib Oct 30, 2015
48e6dc3
Adds .gitignore file
lucrib Oct 31, 2015
66e34f0
Adds the tests file containing new unit tests
lucrib Oct 31, 2015
849de13
Merge branch 'skip_test' of https://github.com/praveenkumar/HTMLTestR…
lucrib Nov 1, 2015
aa32139
Merge branch 'praveenkumar-skip_test'
lucrib Nov 1, 2015
7eb06b5
Rename CHANGE_HISTORY to CHANGES_HISTORY
lucrib Nov 1, 2015
ee4b5dd
Adds some skip tests to the tests file
lucrib Nov 1, 2015
03e1e37
Centralize the counter columns in the html report
lucrib Nov 1, 2015
00766a1
Updates the sample_test_report with the skip tests
lucrib Nov 1, 2015
f36d6d4
Improves the CSS
lucrib Nov 1, 2015
ce84c19
Makes skipped tests reason to be printed in the output box
lucrib Nov 1, 2015
f044eae
Improves the console output to be similar to the unittest and refacto…
lucrib Nov 2, 2015
c8e7319
Change CHANGE_HISTORY to markdown file
lucrib Nov 12, 2016
3895166
Convert CHANGES_HISTORY content to markdown
lucrib Nov 12, 2016
6f87ff8
Adds Travis CI file
lucrib Nov 12, 2016
9057650
Fix TravisCI script
lucrib Nov 12, 2016
f9a5a0d
Fix some PEP8 warnings on test_HTMLTestRunner
lucrib Nov 12, 2016
f35f6a1
Add a sample image to README
lucrib Nov 16, 2016
c0c10b5
Rename README to README.md
lucrib Nov 16, 2016
450c807
Add comments and refactor var name
lucrib Nov 16, 2016
aec1937
Rename LICENCE to LICENSE.md
lucrib Nov 16, 2016
5342dfa
decouple templates from code
lucrib Nov 17, 2016
fef69ee
Update __version__ to 2.0.0
lucrib Nov 25, 2016
e7d104b
Update templates indentation
lucrib Nov 25, 2016
f420da4
Update templates to a new theme using bootstrap
lucrib Nov 25, 2016
1c34588
Update sample image
lucrib Dec 5, 2016
d8a659a
Merge pull request #3 from lucrib/split_templates
lucrib Dec 5, 2016
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
test_HTMLTestRunner.py

.idea

*.pyc
*.pyo
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: python
python:
- "2.7"
# command to run tests
script:
- python tests.py
- python test_HTMLTestRunner.py
30 changes: 30 additions & 0 deletions CHANGES_HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changes History

## HTMLTestRunner2

- Version 0.0.1
- Adds the Skipped status

## HTMLTestRunner

- Version 0.8.3
- Prevent crash on class or module-level exceptions (Darren Wurf).


- Version 0.8.2
- Show output inline instead of popup window (Viorel Lupu).


- Version in 0.8.1
- Validated XHTML (Wolfgang Borgert).
- Added description of test classes and test cases.


- Version in 0.8.0
- Define Template_mixin class for customization.
- Workaround a IE 6 bug that it does not treat <script> block as CDATA.


- Version in 0.7.1
- Back port to Python 2.3 (Frank Horowitz).
- Fix missing scroll bars in detail log (Podi).
Loading