Skip to content

Commit b0c6acb

Browse files
committed
fixed readmes of ex 00, 01, 01.2, 02
1 parent e9f8931 commit b0c6acb

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
lines changed

.learn/exercises/00-welcome/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Welcome to Pandas!
1+
# `00` Welcome to Pandas!
22

33
Being a Machine Learning developer without Pandas is like being a handyman without a hammer.
44

.learn/exercises/01-terminal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How to open a new terminal
1+
# `01` How to open a new terminal
22

33
This exercise engine takes over your terminal, meaning that you cannot type on the current terminal at the bottom of your screen.
44

.learn/exercises/01.2-Pipenv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pipenv: Package Manager
1+
# `01.2` Pipenv: Package Manager
22

33
Before starting any python project is always a good idea to create a new python environment, have isolated python environments prevents bugs and makes your application independent.
44

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import os, io, json, pytest, sys, json
2+
3+
@pytest.mark.it("Install pandas package: pipenv install pandas")
4+
def test_output():
5+
f = open(os.path.dirname(os.path.abspath('Pipfile.lock')+'/Pipfile.lock'))
6+
content = f.read()
7+
assert content.find("pandas") > 0
8+
9+

.learn/vscode_queue.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"name":"initializing","time":10010323436.753},{"name":"reset","time":10010323470.073},{"name":"configuration_loaded","time":10011359569.108},{"name":"start_exercise","time":10027946453.314,"data":"01.2-Pipenv"},{"name":"start_exercise","time":10028668863.218,"data":"02-installation"},{"name":"start_exercise","time":10586357682.091,"data":"01.2-Pipenv"},{"name":"start_exercise","time":10586910946.396,"data":"02-installation"},{"name":"start_exercise","time":10615276501.302,"data":"01.2-Pipenv"},{"name":"start_exercise","time":10616237763.857,"data":"02-installation"}]

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ def pytest_generate_tests(metafunc):
2424
except AttributeError:
2525
metafunc.parametrize("app",[cached_app])
2626
if 'configuration' in metafunc.fixturenames:
27-
metafunc.parametrize("configuration", [json.loads('{"port":3000,"address":"https://kiddopro-pythonpandastut-zzjbcc6h0h1.ws-us40.gitpod.io","editor":{"mode":"preview","agent":"gitpod","version":"1.0.72"},"dirPath":"./.learn","configPath":"learn.json","outputPath":".learn/dist","publicPath":"/preview","publicUrl":"https://3000-kiddopro-pythonpandastut-zzjbcc6h0h1.ws-us40.gitpod.io","language":"auto","grading":"incremental","exercisesPath":".learn/exercises","webpackTemplate":null,"disableGrading":false,"disabledActions":["build"],"actions":[],"entries":{"html":"index.html","vanillajs":"index.js","react":"app.jsx","node":"app.js","python3":"app.py","java":"app.java"},"preview":"https://github.com/4GeeksAcademy/python-pandas-tutorial/blob/main/.learn/assets/pandas-preview.jpeg?raw=true","difficulty":"beginner","duration":3,"description":"Learn the basics and become comfortable using pandas for manipulating machine learning datasets .","title":"Pandas for Machine Learning","slug":"pandas-for-machine-learning","session":4020513713939533000,"translations":[]}')])
27+
metafunc.parametrize("configuration", [json.loads('{"port":3000,"address":"https://kiddopro-pythonpandastut-zzjbcc6h0h1.ws-us34.gitpod.io","editor":{"mode":"preview","agent":"gitpod","version":"1.0.72"},"dirPath":"./.learn","configPath":"learn.json","outputPath":".learn/dist","publicPath":"/preview","publicUrl":"https://3000-kiddopro-pythonpandastut-zzjbcc6h0h1.ws-us34.gitpod.io","language":"auto","grading":"incremental","exercisesPath":".learn/exercises","webpackTemplate":null,"disableGrading":false,"disabledActions":["build"],"actions":[],"entries":{"html":"index.html","vanillajs":"index.js","react":"app.jsx","node":"app.js","python3":"app.py","java":"app.java"},"preview":"https://github.com/4GeeksAcademy/python-pandas-tutorial/blob/main/.learn/assets/pandas-preview.jpeg?raw=true","difficulty":"beginner","duration":3,"description":"Learn the basics and become comfortable using pandas for manipulating machine learning datasets .","title":"Pandas for Machine Learning","slug":"pandas-for-machine-learning","session":1326614059129245200,"translations":[]}')])

0 commit comments

Comments
 (0)