This file contains hidden or 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
print "Hello World" |
This file contains hidden or 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
navigator.geolocation.getCurrentPosition(function(args) { | |
console.log(args.coords.latitude,args.coords.longitude) | |
}, function(error) { | |
console.error(error); | |
}); |
This file contains hidden or 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
import unittest | |
from chai import Chai | |
class Walrus(object): | |
def __init__(self): | |
self.energy = 0 | |
def receive_gift(self, gift): | |
if gift.is_editable(): |
This file contains hidden or 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
(python3.2) vbabiy@ubuntu ~/Projects/git-projects/pip [python3•] ❯❯ time nosetests -v -x tests.test_basic | |
Check we are running proper version of pip in run_pip. ... ok | |
Check if ``pip-<PYVERSION>`` commands behaves equally ... ok | |
Test installing a package from PyPI. ... ok | |
Test installing a package from the PyPI mirrors. ... ok | |
Test installing a package from a specific PyPI mirror. ... ok | |
Test editable installation. ... ok | |
Test checking out from svn. ... ok | |
Test downloading an editable using a relative custom src folder. ... ok | |
Test installing an editable in two steps (first with --no-install, then with --no-download). ... ok |
This file contains hidden or 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
(python3.1) vbabiy@ubuntu ~/Projects/git-projects/pip [python3•] ❯❯ time nosetests -v -x tests.test_basic | |
Check we are running proper version of pip in run_pip. ... ERROR | |
====================================================================== | |
ERROR: Check we are running proper version of pip in run_pip. | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/vbabiy/.virtualenvs/python3.1/lib/python3.1/site-packages/nose/case.py", line 188, in runTest | |
self.test(*self.arg) | |
File "/mnt/hgfs/mac_home/Projects/git-projects/pip/tests/test_basic.py", line 20, in test_correct_pip_version |
This file contains hidden or 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
(python3.1) vbabiy@ubuntu ~/Projects/git-projects/pip [python3••] ❯❯ python setup.py test | |
running test | |
running egg_info | |
writing pip.egg-info/PKG-INFO | |
writing top-level names to pip.egg-info/top_level.txt | |
writing dependency_links to pip.egg-info/dependency_links.txt | |
writing entry points to pip.egg-info/entry_points.txt | |
reading manifest file 'pip.egg-info/SOURCES.txt' | |
reading manifest template 'MANIFEST.in' | |
no previously-included directories found matching 'docs/_build/_sources' |
NewerOlder