Skip to content

Commit

Permalink
fix: duplicate imports, add azure-identity to install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
devlace committed May 10, 2021
1 parent d016699 commit 28254a2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ pytest
azure-identity
azure-mgmt-resource
azure-mgmt-datafactory
azure-identity
msrestazure
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def read(fname):
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires='>=3.5',
install_requires=['pytest>=3.5.0'],
install_requires=['pytest>=3.5.0', 'azure-identity', 'azure-mgmt-datafactory'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
Expand Down
3 changes: 1 addition & 2 deletions src/pytest_adf/pytest_adf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
import os
import time
import logging
from azure.identity import ClientSecretCredential
from azure.identity import ClientSecretCredential, AzureCliCredential
from azure.mgmt.datafactory import DataFactoryManagementClient
from azure.identity import AzureCliCredential

LOG = logging.getLogger(__name__)

Expand Down

0 comments on commit 28254a2

Please # to comment.