Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adtech-labs/conda-mirror
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.0.6
Choose a base ref
...
head repository: adtech-labs/conda-mirror
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.0.7
Choose a head ref
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Oct 24, 2016

  1. Copy the full SHA
    69400b0 View commit details
  2. Seems to be working

    ericdill committed Oct 24, 2016
    Copy the full SHA
    1acc9e2 View commit details
  3. Fix the travis syntax

    ericdill committed Oct 24, 2016
    Copy the full SHA
    2863aed View commit details
  4. Copy the full SHA
    e5628ea View commit details
  5. Tagging 0.0.7

    ericdill committed Oct 24, 2016
    Copy the full SHA
    44bf787 View commit details
Showing with 6 additions and 2 deletions.
  1. +0 −1 .travis.yml
  2. +1 −0 run_tests
  3. +5 −1 setup.py
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@ install:

script:
- ./run_tests
- conda_mirror.py -h

after_success:
- codecov
1 change: 1 addition & 0 deletions run_tests
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
pip install -r test-requirements.txt
conda-mirror -h
coverage run -m py.test -vrsx
coverage report -m
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -17,6 +17,10 @@
'requests',
'tqdm'
],
scripts=['conda_mirror/conda_mirror.py'],
entry_points={
"console_scripts": [
'conda-mirror = conda_mirror.conda_mirror:cli'
]
}
)