Skip to content

Commit

Permalink
Merge pull request apache#3 from SecurityCompass/LIBCLOUD-556_azure_c…
Browse files Browse the repository at this point in the history
…ompute_driver_rebased

Support for Virtual Machine Images and handling of Temp Redirects
  • Loading branch information
Matt Baldwin committed Feb 27, 2015
2 parents b331418 + 65f4a7a commit 33e0090
Show file tree
Hide file tree
Showing 309 changed files with 19,108 additions and 3,398 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,9 @@ coverage_html_report/
.idea
dist/*apache-libcloud*
dist/*apache_libcloud*
docs/apidocs/*
_build/
apache_libcloud.egg-info/
.project
.pydevproject
.settings
35 changes: 35 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[MASTER]
# Add <file or directory> to the black list. It should be a base name, not a
# path. You may set this option multiple times.
ignore=test


# Pickle collected data for later comparisons.
persistent=yes

# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=


[MESSAGES CONTROL]
disable=redefined-builtin,too-many-arguments,too-few-public-methods,missing-docstring,invalid-name,abstract-method,no-self-use


[TYPECHECK]
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E0201 when accessed. Python regular
# expressions are accepted.
generated-members=async_request,objects

[VARIABLES]

# Tells wether we should check for unused import in __init__ files.
init-import=no

# A regular expression matching names used for dummy variables (i.e. not used).
dummy-variables-rgx=_|dummy

# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.
additional-builtins=
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@

language: python
python: 2.7
os:
- linux
- osx
env:
- TOX_ENV=lint
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=pypy
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=docs

install:
Expand Down
Loading

0 comments on commit 33e0090

Please sign in to comment.