This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "poetry-certs-not-working" | |
version = "0.1.0" | |
description = "" | |
authors = ["Alex Drozd <dont@email.me>"] | |
readme = "README.md" | |
packages = [{include = "poetry_demo"}] | |
[tool.poetry.dependencies] | |
python = "^3.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "example" | |
version = "0.0.1" | |
description = "Example example example." | |
license = "MIT" | |
readme = "README.md" | |
authors = ["Alex Drozd <alex@kicksaw.com>"] | |
packages = [ | |
{ include = "src" } | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from simple_mockforce import mock_salesforce | |
from simple_salesforce import Salesforce | |
@mock_salesforce | |
def test_api(): | |
salesforce = Salesforce( | |
username=os.getenv["SFDC_USERNAME"], | |
password=os.getenv["SFDC_PASSWORD"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from simple_mockforce import mock_salesforce | |
from simple_salesforce import Salesforce | |
@mock_salesforce | |
def test_api(): | |
salesforce = Salesforce( | |
username=os.getenv["SFDC_USERNAME"], | |
password=os.getenv["SFDC_PASSWORD"], | |
security_token=os.getenv["SFDC_SECURITY_TOKEN"] |