Skip to content

Instantly share code, notes, and snippets.

View jayakumarc's full-sized avatar

Jayakumar Chinnappan jayakumarc

  • ThoughtWorks
  • Chennai
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jayakumarc on github.
  • I am jayakumar (https://keybase.io/jayakumar) on keybase.
  • I have a public key ASDGCSYs6mDk0OCRATExXy6uPebgxMaeyJB96ZIKxJfGPwo

To claim this, I am signing this object:

virtualenv --no-site-packages build\python -p C:\\Python33\\python.exe
Fatal Python error: Py_Initialize: unable to load the file system codec
File "C:\Users\jayakum\selenium\build\python\lib\encodings\__init__.py", line 123
raise CodecRegistryError,\
^
SyntaxError: invalid syntax
Using base prefix 'C:\\Python33'
New python executable in build\python\Scripts\python.exe
ERROR: The executable build\python\Scripts\python.exe is not functioning
ERROR: It thinks sys.prefix is 'c:\\users\\jayakum\\selenium' (should be 'c:\\users\\jayakum\\selenium\\build\\python')
@jayakumarc
jayakumarc / demo_htmltestrunner.py
Created July 9, 2011 07:47
HTMLTestRunner usage
import unittest
import HTMLTestRunner
class SampleTest(unittest.TestCase):
def test_pass(self):
"""Test to demonstrate pass condition"""
self.assertTrue(True)
def test_fail(self):