From ab14d49924ff3afa84533a5e8f0586554ad5e62b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 4 Aug 2023 16:11:42 +0200 Subject: [PATCH] FAQ --- index.html | 4 ++-- web/faq.html | 12 ++---------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index ce96312..9fab83d 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@
- +
@@ -2930,7 +2930,7 @@ $ deactivate # Deactivates virtual e diff --git a/web/faq.html b/web/faq.html index 6315f56..1a7d8be 100644 --- a/web/faq.html +++ b/web/faq.html @@ -36,16 +36,8 @@     This way classes can be copy-pasted into the Python console, which would otherwise raise IndentationError.
-
Why are virtual environments and tests not covered?
-    Check out The Hitchhiker’s Guide to Python for a nice overview of the mentioned topics.

-    A quick overview of virtual environments in Unix:
-        python3 -m venv env      # Creates virtual environment in current directory.
-        source env/bin/activate  # Activates virtual environment.
-        deactivate               # Deactivates virtual environment.

-    And Windows:
-        py -m venv env           # Creates virtual environment in current directory.
-        .\env\Scripts\activate   # Activates virtual environment.
-        deactivate               # Deactivates virtual environment.

+
Why are tests not covered?
+    Check out The Hitchhiker’s Guide to Python for a nice overview.

Django?