Skip to content
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

Move error reporting code into a subpackage #2436

Merged
merged 3 commits into from
Sep 26, 2016

Commits on Sep 26, 2016

  1. Moving all error-reporting files into subdirectory.

    Done via:
    
    $ mkdir -p error_reporting/google/cloud
    $ cp google/__init__.py error_reporting/google/__init__.py
    $ git add error_reporting/google/__init__.py
    $ cp google/cloud/__init__.py error_reporting/google/cloud/__init__.py
    $ git add error_reporting/google/cloud/__init__.py
    $ git mv google/cloud/error_reporting error_reporting/google/cloud/error_reporting
    $ git mv unit_tests/error_reporting error_reporting/unit_tests
    dhermes committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    7a2cc4c View commit details
    Browse the repository at this point in the history
  2. Making error-reporting subpackage into a proper package.

    - Adding README, setup.py, MANIFEST.in, .coveragerc and tox.ini
    - Adding google-cloud-error-reporting as a dependency to the umbrella
      package
    - Adding the error_reporting subdirectory into the list of packages
      for verifying the docs
    - Incorporating the error_reporting subdirectory into the umbrella
      coverage report
    - Adding the error-reporting only tox tests to the Travis config
    - Adding {toxinidir}/../core as a dependency for the error-reporting
      tox config
    dhermes committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    05961bc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    655125e View commit details
    Browse the repository at this point in the history