Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 29150dc

Browse files
committed
Update the resource removal sequence
Also: 1. Adopt py.test over nosetest 2. Cleanup some test code
1 parent 4aba710 commit 29150dc

File tree

16 files changed

+64
-54
lines changed

16 files changed

+64
-54
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,7 @@ ENV/
9696
*.sln
9797

9898
# PyCharm / IntelliJ IDEA
99-
.idea/workspace.xml
100-
.idea/tasks.xml
99+
.idea/
100+
101+
# PyTest and its code coverage
102+
.pytest_cache/

.idea/azure-python-devtools.iml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ python:
66
- "3.4"
77
- "3.5"
88
- "3.6"
9-
- "3.6-dev"
109
install:
1110
- pip install -r requirements.txt
1211
script:

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
codecov==2.0.9
2-
mock==2.0.0;python_version<="2.7"
3-
nose==1.3.7
4-
pylint==1.8.2
2+
mock==2.0.0
3+
pylint==1.8.4
4+
pytest==3.5.1
5+
pytest-cov==2.5.1
56

67
-e .

scripts/ci.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
3+
pylint src/azure_devtools
4+
pytest src/azure_devtools/scenario_tests/tests --cov=./

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from setuptools import setup
1010

1111

12-
VERSION = "0.5.5"
12+
VERSION = "1.0.0"
1313

1414

1515
CLASSIFIERS = [

0 commit comments

Comments
 (0)