Skip to content

Commit 38f48a1

Browse files
committed
hbase.
1 parent e3bb3b0 commit 38f48a1

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/run_notebooks.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ jobs:
4242
4343
- name: Setup optional docker container
4444
run: |
45-
test "X${{ inputs.service }}" = Xtrue && \
45+
if test "X${{ inputs.service }}" = Xtrue ; then
4646
docker run --rm -d ${{ inputs.docker-run-line }}
47+
fi
4748
4849
- name: Setup Python
4950
uses: actions/[email protected]
@@ -55,8 +56,9 @@ jobs:
5556
run: |
5657
python3 -m pip install --upgrade pip
5758
pip install -r .github/workflows/requirements.txt
58-
test "x${{ inputs.additional-requirements }}" = x || \
59+
if ! test "x${{ inputs.additional-requirements }}" = x ; then
5960
pip install ${{ inputs.additional-requirements }}
61+
fi
6062
6163
- name: Create output directory
6264
run: mkdir -p ${{RUNNER.temp}}/nb-runner

hbase/sesion5.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"\n",
3030
"Se puede utilizar el *shell* propio de HBase en la instalación actual.\n",
3131
"\n",
32-
"Con HBase vamos a simular un modo _semi-clúster_ con una sola máquina.\n"
32+
"Con HBase vamos a simular un modo _semi-clúster_ con una sola máquina."
3333
]
3434
},
3535
{

0 commit comments

Comments
 (0)