File tree Expand file tree Collapse file tree 9 files changed +21
-20
lines changed Expand file tree Collapse file tree 9 files changed +21
-20
lines changed Original file line number Diff line number Diff line change @@ -376,4 +376,4 @@ Bugfix
376
376
- create command line and pytest.ini configuration options for executable
377
377
- create command line and pytest.ini configuration options for host
378
378
- create command line and pytest.ini configuration options for port
379
- - Extracted code from pytest-dbfixtures
379
+ - Extracted code from pytest-postgresql
Original file line number Diff line number Diff line change
1
+ Really old license miss-name that wasn't fix x years ago, when separating pytest-postgresql from pytest-dbfixtures
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
10
10
11
- # pytest-dbfixtures is distributed in the hope that it will be useful,
11
+ # pytest-postgresql is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
# GNU Lesser General Public License for more details.
15
15
16
16
# You should have received a copy of the GNU Lesser General Public License
17
- # along with pytest-dbfixtures . If not, see <http://www.gnu.org/licenses/>.
17
+ # along with pytest-postgresql . If not, see <http://www.gnu.org/licenses/>.
18
18
"""PostgreSQL executor crafter around pg_ctl."""
19
19
20
20
import os .path
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
10
10
11
- # pytest-dbfixtures is distributed in the hope that it will be useful,
11
+ # pytest-postgresql is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
# GNU Lesser General Public License for more details.
15
15
16
16
# You should have received a copy of the GNU Lesser General Public License
17
- # along with pytest-dbfixtures . If not, see <http://www.gnu.org/licenses/>.
17
+ # along with pytest-postgresql . If not, see <http://www.gnu.org/licenses/>.
18
18
"""PostgreSQL Noop executor providing connection details for postgres client."""
19
19
from typing import Any , Optional , Union
20
20
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
10
10
11
- # pytest-dbfixtures is distributed in the hope that it will be useful,
11
+ # pytest-postgresql is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
# GNU Lesser General Public License for more details.
15
15
16
16
# You should have received a copy of the GNU Lesser General Public License
17
- # along with pytest-dbfixtures . If not, see <http://www.gnu.org/licenses/>.
17
+ # along with pytest-postgresql . If not, see <http://www.gnu.org/licenses/>.
18
18
"""Fixture factories for postgresql fixtures."""
19
19
20
20
from pytest_postgresql .factories .client import postgresql
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
10
10
11
- # pytest-dbfixtures is distributed in the hope that it will be useful,
11
+ # pytest-postgresql is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
# GNU Lesser General Public License for more details.
15
15
16
16
# You should have received a copy of the GNU Lesser General Public License
17
- # along with pytest-dbfixtures . If not, see <http://www.gnu.org/licenses/>.
17
+ # along with pytest-postgresql . If not, see <http://www.gnu.org/licenses/>.
18
18
"""Fixture factory for postgresql client."""
19
19
import warnings
20
20
from pathlib import Path
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
10
10
11
- # pytest-dbfixtures is distributed in the hope that it will be useful,
11
+ # pytest-postgresql is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
# GNU Lesser General Public License for more details.
15
15
16
16
# You should have received a copy of the GNU Lesser General Public License
17
- # along with pytest-dbfixtures . If not, see <http://www.gnu.org/licenses/>.
17
+ # along with pytest-postgresql . If not, see <http://www.gnu.org/licenses/>.
18
18
"""Fixture factory for existing postgresql server."""
19
19
import os
20
20
from pathlib import Path
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
10
10
11
- # pytest-dbfixtures is distributed in the hope that it will be useful,
11
+ # pytest-postgresql is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
# GNU Lesser General Public License for more details.
15
15
16
16
# You should have received a copy of the GNU Lesser General Public License
17
- # along with pytest-dbfixtures . If not, see <http://www.gnu.org/licenses/>.
17
+ # along with pytest-postgresql . If not, see <http://www.gnu.org/licenses/>.
18
18
"""Fixture factory for postgresql process."""
19
19
import os .path
20
20
import platform
Original file line number Diff line number Diff line change 3
3
4
4
# This file is part of pytest-postgresql.
5
5
6
- # pytest-dbfixtures is free software: you can redistribute it and/or modify
6
+ # pytest-postgresql is free software: you can redistribute it and/or modify
7
7
# it under the terms of the GNU Lesser General Public License as published by
8
8
# the Free Software Foundation, either version 3 of the License, or
9
9
# (at your option) any later version.
You can’t perform that action at this time.
0 commit comments