Skip to content

Commit c5304d3

Browse files
authored
Merge pull request #893 from ClearcodeHQ/fix-license
Change really old package's name to the new one in License
2 parents 04579c6 + e96649a commit c5304d3

File tree

9 files changed

+21
-20
lines changed

9 files changed

+21
-20
lines changed

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,4 +376,4 @@ Bugfix
376376
- create command line and pytest.ini configuration options for executable
377377
- create command line and pytest.ini configuration options for host
378378
- create command line and pytest.ini configuration options for port
379-
- Extracted code from pytest-dbfixtures
379+
- Extracted code from pytest-postgresql

newsfragments/893.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Really old license miss-name that wasn't fix x years ago, when separating pytest-postgresql from pytest-dbfixtures

pytest_postgresql/executor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU Lesser General Public License for more details.
1515

1616
# 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/>.
1818
"""PostgreSQL executor crafter around pg_ctl."""
1919

2020
import os.path

pytest_postgresql/executor_noop.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU Lesser General Public License for more details.
1515

1616
# 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/>.
1818
"""PostgreSQL Noop executor providing connection details for postgres client."""
1919
from typing import Any, Optional, Union
2020

pytest_postgresql/factories/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU Lesser General Public License for more details.
1515

1616
# 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/>.
1818
"""Fixture factories for postgresql fixtures."""
1919

2020
from pytest_postgresql.factories.client import postgresql

pytest_postgresql/factories/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU Lesser General Public License for more details.
1515

1616
# 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/>.
1818
"""Fixture factory for postgresql client."""
1919
import warnings
2020
from pathlib import Path

pytest_postgresql/factories/noprocess.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU Lesser General Public License for more details.
1515

1616
# 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/>.
1818
"""Fixture factory for existing postgresql server."""
1919
import os
2020
from pathlib import Path

pytest_postgresql/factories/process.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010

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,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU Lesser General Public License for more details.
1515

1616
# 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/>.
1818
"""Fixture factory for postgresql process."""
1919
import os.path
2020
import platform

pytest_postgresql/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# This file is part of pytest-postgresql.
55

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
77
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.

0 commit comments

Comments
 (0)