check for login page in github ci
This commit is contained in:
parent
d6ac7998f0
commit
e68f6aaa76
2 changed files with 2 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -112,4 +112,4 @@ jobs:
|
||||||
- name: Curl to Django app
|
- name: Curl to Django app
|
||||||
run: |
|
run: |
|
||||||
sleep 10
|
sleep 10
|
||||||
curl -IL http://127.0.0.1:8000/
|
curl --silent --location 'http://127.0.0.1:8000' | grep 'https://github.com/pirate/ArchiveBox/wiki'
|
||||||
|
|
|
@ -51,7 +51,7 @@ RUN groupadd --system archivebox \
|
||||||
|
|
||||||
ADD . "$CODE_PATH"
|
ADD . "$CODE_PATH"
|
||||||
WORKDIR "$CODE_PATH"
|
WORKDIR "$CODE_PATH"
|
||||||
ENV PATH="$VENV_PATH/bin:${PATH}"
|
ENV PATH="${PATH}:$VENV_PATH/bin"
|
||||||
RUN python -m venv --clear --symlinks "$VENV_PATH" \
|
RUN python -m venv --clear --symlinks "$VENV_PATH" \
|
||||||
&& pip install --upgrade pip setuptools \
|
&& pip install --upgrade pip setuptools \
|
||||||
&& pip install -e .
|
&& pip install -e .
|
||||||
|
|
Loading…
Reference in a new issue