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 monitoring code into a subpackage #2430

Merged
merged 2 commits into from
Sep 26, 2016

Commits on Sep 26, 2016

  1. Moving all monitoring files into subdirectory.

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

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