Skip to content

Commit

Permalink
Resurrecting Azure Execution provider (#1121)
Browse files Browse the repository at this point in the history
This pull request re-adds the Azure execution provider.
  • Loading branch information
benhg authored and benclifford committed Jul 17, 2019
1 parent b0d1532 commit 1aebf26
Show file tree
Hide file tree
Showing 7 changed files with 523 additions and 1 deletion.
7 changes: 7 additions & 0 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@
"givenName": "Ian",
"familyName": "Foster",
"email": "[email protected]"
},
{
"@id":"http://orcid.org/0000-0002-0762-2684",
"@type": "Person",
"givenName": "Ben",
"familyName": "Glick",
"email": "[email protected]"
}
],
"softwareRequirements": [
Expand Down
3 changes: 3 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ ignore_missing_imports = True
[mypy-azure.*]
ignore_missing_imports = True

[mypy-msrestazure.*]
ignore_missing_imports = True

# !
[mypy-libsubmit.azure.azure_deployer.*]
ignore_missing_imports = True
Expand Down
4 changes: 3 additions & 1 deletion parsl/providers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from parsl.providers.aws.aws import AWSProvider
from parsl.providers.googlecloud.googlecloud import GoogleCloudProvider
from parsl.providers.jetstream.jetstream import JetstreamProvider
from parsl.providers.azure.azure import AzureProvider

# Kubernetes
from parsl.providers.kubernetes.kube import KubernetesProvider
Expand All @@ -28,4 +29,5 @@
'AWSProvider',
'GoogleCloudProvider',
'JetstreamProvider',
'KubernetesProvider']
'KubernetesProvider',
'AzureProvider']
Empty file.
Loading

0 comments on commit 1aebf26

Please sign in to comment.