Fix typos
continuous-integration/drone the build was successful
Details
continuous-integration/drone the build was successful
Details
This commit is contained in:
parent
a2ca17f3f3
commit
bd426aa64d
|
@ -15,7 +15,7 @@ path_to_datman = "/path/to/datman"
|
||||||
And set up a source using the same hostname:
|
And set up a source using the same hostname:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[source.mysourcename]
|
[sources.mysourcename]
|
||||||
directory = "/path/to/source/on/remote"
|
directory = "/path/to/source/on/remote"
|
||||||
hostname = "myhost"
|
hostname = "myhost"
|
||||||
```
|
```
|
||||||
|
|
|
@ -10,7 +10,7 @@ from helpers.datman_helpers import set_up_simple_datman
|
||||||
from helpers.yama_helpers import set_up_simple_yama
|
from helpers.yama_helpers import set_up_simple_yama
|
||||||
|
|
||||||
|
|
||||||
class TestPostgresHelper(TestCase):
|
class TestMysqlHelper(TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
if "TEST_MYSQL" not in os.environ:
|
if "TEST_MYSQL" not in os.environ:
|
||||||
self.skipTest(
|
self.skipTest(
|
||||||
|
@ -65,7 +65,7 @@ class TestPostgresHelper(TestCase):
|
||||||
set_up_simple_datman(
|
set_up_simple_datman(
|
||||||
datman_path,
|
datman_path,
|
||||||
custom_extra_test=f"""
|
custom_extra_test=f"""
|
||||||
[source.mysql123]
|
[sources.mysql123]
|
||||||
helper = "mysql"
|
helper = "mysql"
|
||||||
label = "precious"
|
label = "precious"
|
||||||
kind = {{ stdout = "mysql123.sql" }}
|
kind = {{ stdout = "mysql123.sql" }}
|
||||||
|
|
Loading…
Reference in New Issue