Commit 440d58da authored by Carlos Natalino's avatar Carlos Natalino
Browse files

Naive test for Python 3.12 in the context component.

parent 5892ca30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM python:3.9-slim
FROM python:3.12-slim

# Install dependencies
RUN apt-get --yes --quiet --quiet update && \
+2 −1
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import os, pytest, sqlalchemy
import os
import pytest, sqlalchemy
from _pytest.config import Config
from _pytest.terminal import TerminalReporter
from typing import Tuple