Skip to content

Commit

Permalink
WIP: Do not use editable install
Browse files Browse the repository at this point in the history
Editable installs don't work with `pip` and `pyproject.toml`.
  • Loading branch information
gmloose committed Mar 26, 2024
1 parent 045c8c9 commit 281d95c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py2_kern6.docker
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ RUN docker-apt-install \
python-nose
ADD . /src
WORKDIR /src
RUN pip install -e .
RUN pip install .
RUN pip install -r tests/requirements.txt
RUN nosetests --with-coverage --verbose --cover-package=casacore
2 changes: 1 addition & 1 deletion .github/workflows/py3_casacore_master.docker
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN docker-apt-install \
python3-nose
ADD . /src
WORKDIR /src
RUN pip3 install -e .
RUN pip3 install .
RUN pip3 install -r tests/requirements.txt
RUN nosetests3 --with-coverage --verbose --cover-package=casacore
RUN python3 setup.py clean
2 changes: 1 addition & 1 deletion .github/workflows/py3_casacore_v3.3.docker
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ RUN docker-apt-install \
python3-nose
ADD . /src
WORKDIR /src
RUN pip3 install -e .
RUN pip3 install .
RUN pip3 install -r tests/requirements.txt
RUN nosetests3 --with-coverage --verbose --cover-package=casacore
2 changes: 1 addition & 1 deletion .github/workflows/py3_casacore_v3.4.docker
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ RUN docker-apt-install \
python3-nose
ADD . /src
WORKDIR /src
RUN pip3 install -e .
RUN pip3 install .
RUN pip3 install -r tests/requirements.txt
RUN nosetests3 --with-coverage --verbose --cover-package=casacore
2 changes: 1 addition & 1 deletion .github/workflows/py3_kern6.docker
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ RUN docker-apt-install \
python3-nose
ADD . /src
WORKDIR /src
RUN pip3 install -e .
RUN pip3 install .
RUN pip3 install -r tests/requirements.txt
RUN nosetests3 --with-coverage --verbose --cover-package=casacore
2 changes: 1 addition & 1 deletion .github/workflows/py3_kern7.docker
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ RUN docker-apt-install \
python3-nose
ADD . /src
WORKDIR /src
RUN pip3 install -e .
RUN pip3 install .
RUN pip3 install -r tests/requirements.txt
RUN nosetests3 --with-coverage --verbose --cover-package=casacore

0 comments on commit 281d95c

Please sign in to comment.