Skip to content

Commit

Permalink
Fix: TEST some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
naparuba committed Sep 21, 2024
1 parent f3f7cd9 commit ed675cc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 49 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You will need:

Just launch:

python setup.py install
python3 setup.py install

Example of the installation at:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
FROM naparuba/debian-10
FROM amazonlinux:2
LABEL maintainer="Jean Gabes <[email protected]>"

ADD test/docker-helper/ /
# Amazon can be slow and it broke tests...
RUN /yum_install yum-plugin-fastestmirror
RUN /yum_install python3

# Need for debug and test
RUN /apt_get_install procps
ENV PYTHON_EXE=/usr/bin/python3

ADD . /root/opsbro-oss


WORKDIR /root/opsbro-oss

RUN $PYTHON_EXE setup.py install
RUN python3 setup.py install

# Copy the mail pack into a local one to enable modification
RUN opsbro packs overload global.mongodb
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM ubuntu:24.04
LABEL maintainer="Jean Gabes <[email protected]>"

ADD test/docker-helper/ /
Expand Down
15 changes: 0 additions & 15 deletions test/docker-files/docker-file-COMPLIANCE-SYSTEM-USER-debian11.txt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM ubuntu:20.04
FROM ubuntu:24.04
LABEL maintainer="Jean Gabes <[email protected]>"

ADD test/docker-helper/ /
RUN /apt_get_install python
RUN /apt_get_install python3

ADD . /root/opsbro-oss


WORKDIR /root/opsbro-oss

RUN python setup.py install
RUN python3 setup.py install

# Copy the mail pack into a local one to enable modification
RUN opsbro packs overload global.linux
Expand Down

0 comments on commit ed675cc

Please sign in to comment.