Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test fibonacci generator1.py #293

Open
wants to merge 31 commits into
base: master
Choose a base branch
from

Commits on Feb 18, 2023

  1. Added a test for the method Rectangle.multiply in Mathematical_Algori…

    …thms.src.RectangleOperations
    
    closes #52
    weissfennek committed Feb 18, 2023
    Configuration menu
    Copy the full SHA
    25a5d4a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #53 from weissfennek/Test_RectangleOperations

    Added a test for the method Rectangle.multiply in Mathematical_Algori…
    weissfennek authored Feb 18, 2023
    Configuration menu
    Copy the full SHA
    7848f3f View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Configuration menu
    Copy the full SHA
    907f8d0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #62 from weissfennek/Test_linear_search_recursion

    Added tests that cover `linear_search_recursion.py`.
    G-Jasser authored Feb 24, 2023
    Configuration menu
    Copy the full SHA
    9c17443 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2023

  1. Le test_Bubble_Sort montre que l'algorithme de tri Bubble Sort foncti…

    …onne efficacement en triant correctement une liste d'éléments dans l'ordre croissant. Ce test est un exemple pratique de la façon dont l'algorithme de tri Bubble Sort peut être utilisé pour trier de grandes quantités de données en un temps relativement court.
    
    Cependant, bien que l'algorithme de tri Bubble Sort soit relativement simple à comprendre et à implémenter, il peut avoir des performances sous-optimales dans certaines situations, en particulier lorsque le nombre d'éléments à trier est très élevé. Il peut également nécessiter plus de temps pour trier une liste si celle-ci est initialement désordonnée ou si elle contient des doublons.
    
    Dans l'ensemble, le test_Bubble_Sort est un excellent moyen de vérifier la fiabilité et l'efficacité de l'algorithme de tri Bubble Sort dans des conditions normales d'utilisation. Cependant, il est important de garder à l'esprit les limites de cet algorithme et de considérer d'autres options de tri en fonction des besoins spécifiques de chaque cas d'utilisation.
    closes#60
    Kineba committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    0fe4f09 View commit details
    Browse the repository at this point in the history
  2. Le test_Bubble_Sort montre que l'algorithme de tri Bubble Sort foncti…

    …onne efficacement en triant correctement une liste d'éléments dans l'ordre croissant. Ce test est un exemple pratique de la façon dont l'algorithme de tri Bubble Sort peut être utilisé pour trier de grandes quantités de données en un temps relativement court.
    
    Cependant, bien que l'algorithme de tri Bubble Sort soit relativement simple à comprendre et à implémenter, il peut avoir des performances sous-optimales dans certaines situations, en particulier lorsque le nombre d'éléments à trier est très élevé. Il peut également nécessiter plus de temps pour trier une liste si celle-ci est initialement désordonnée ou si elle contient des doublons.
    
    Dans l'ensemble, le test_Bubble_Sort est un excellent moyen de vérifier la fiabilité et l'efficacité de l'algorithme de tri Bubble Sort dans des conditions normales d'utilisation. Cependant, il est important de garder à l'esprit les limites de cet algorithme et de considérer d'autres options de tri en fonction des besoins spécifiques de chaque cas d'utilisation.
    closes#60
    Kineba committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    5816be5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0f56324 View commit details
    Browse the repository at this point in the history
  4. We added test_Insertio_Sort.py which takes into account a test with a…

    …n empty array, an already sorted array and at the end an array containing duplicates.
    
    closes #61
    Dande-ronelbaye committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    e192b3f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #64 from weissfennek/Test_Insertion_Sort

    We added test_Insertio_Sort.py which takes into account a test with a…
    aboubacar-said authored Feb 25, 2023
    Configuration menu
    Copy the full SHA
    2e60f96 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2023

  1. Add files via upload

    added tests that cover the ROT13.py. closes #65
    MrabetOussama0 authored Feb 26, 2023
    Configuration menu
    Copy the full SHA
    7dbc4c4 View commit details
    Browse the repository at this point in the history
  2. Add files via upload

    added tests that cover the ROT13.py. closes #65
    MrabetOussama0 authored Feb 26, 2023
    Configuration menu
    Copy the full SHA
    83bf9a1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4891598 View commit details
    Browse the repository at this point in the history
  4. La fonction test_push crée une pile de taille 2, ajoute deux éléments…

    … à la pile et essaie d'ajouter un troisième élément à la pile pleine. On utilise pytest.raises pour vérifier si l'ajout d'un troisième élément à une pile pleine génère une exception IndexError.
    
    La fonction test_pop crée une pile de taille 2, essaie de supprimer un élément d'une pile vide, ajoute deux éléments à la pile, supprime les éléments de la pile et essaie de supprimer un élément d'une pile vide. On utilise pytest.raises pour vérifier si la suppression d'un élément d'une pile vide génère une exception IndexError.
    Les fonctions test_isEmpty et test_isFull créent une pile de taille 2, vérifient si la pile est vide/pleine avant et après avoir ajouté des éléments à la pile.
    added tests that cover the stack.py .closes #68
    Hassenbd committed Feb 26, 2023
    Configuration menu
    Copy the full SHA
    86d3ee6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c68c23d View commit details
    Browse the repository at this point in the history
  6. La fonction test_push crée une pile de taille 2, ajoute deux éléments…

    … à la pile et essaie d'ajouter un troisième élément à la pile pleine. On utilise pytest.raises pour vérifier si l'ajout d'un troisième élément à une pile pleine génère une exception IndexError.
    
    La fonction test_pop crée une pile de taille 2, essaie de supprimer un élément d'une pile vide, ajoute deux éléments à la pile, supprime les éléments de la pile et essaie de supprimer un élément d'une pile vide. On utilise pytest.raises pour vérifier si la suppression d'un élément d'une pile vide génère une exception IndexError.
    Les fonctions test_isEmpty et test_isFull créent une pile de taille 2, vérifient si la pile est vide/pleine avant et après avoir ajouté des éléments à la pile.
    added tests that cover the stack.py .closes #68
    Hassenbd committed Feb 26, 2023
    Configuration menu
    Copy the full SHA
    8b665b1 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2023

  1. added tests that cover the stack.py

    La fonction test_push crée une pile de taille 2, ajoute deux éléments à la pile et essaie d'ajouter un troisième élément à la pile pleine. On utilise pytest.raises pour vérifier si l'ajout d'un troisième élément à une pile pleine génère une exception IndexError.
    
    La fonction test_pop crée une pile de taille 2, essaie de supprimer un élément d'une pile vide, ajoute deux éléments à la pile, supprime les éléments de la pile et essaie de supprimer un élément d'une pile vide. On utilise pytest.raises pour vérifier si la suppression d'un élément d'une pile vide génère une exception IndexError. Les fonctions test_isEmpty et test_isFull créent une pile de taille 2, vérifient si la pile est vide/pleine avant et après avoir ajouté des éléments à la pile.
    
    closes #68
    Hassenbd committed Feb 27, 2023
    Configuration menu
    Copy the full SHA
    187b941 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #77 from weissfennek/Test_Stack

    Added tests that cover the script Stack.py
    Hassenbd authored Feb 27, 2023
    Configuration menu
    Copy the full SHA
    fcd9152 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Added a test for the method palindrome

    in Mathematical_Algorithms.src.Palindrome
    closes #49
    IslemBaaroun committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    bfe1ad1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #84 from weissfennek/Test_palindrome

    Added a test for the method palindrome
    IslemBaaroun authored Mar 2, 2023
    Configuration menu
    Copy the full SHA
    c1d66be View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2023

  1. little change in source code Palindrome.py

    in Mathematical_Algorithms.src
    IslemBaaroun committed Mar 3, 2023
    Configuration menu
    Copy the full SHA
    c537516 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b861a1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #92 from weissfennek/Test_Armstrong_Number

    added tests that cover the Armstrong_Number.py
    samarbh authored Mar 3, 2023
    Configuration menu
    Copy the full SHA
    85bdbf2 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2023

  1. Merge pull request #93 from weissfennek/Test_palindrome

    corrected indentation in Palindrome.py
    weissfennek authored Mar 5, 2023
    Configuration menu
    Copy the full SHA
    fc903a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. Configuration menu
    Copy the full SHA
    acef066 View commit details
    Browse the repository at this point in the history
  2. Test for Linear Search

    AssemAloui authored Mar 6, 2023
    Configuration menu
    Copy the full SHA
    38980fc View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2023

  1. Configuration menu
    Copy the full SHA
    e6c8632 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. Create python-package-conda.yml

    set up continous integration
    weissfennek authored Mar 10, 2023
    Configuration menu
    Copy the full SHA
    96592ac View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Configuration menu
    Copy the full SHA
    aedb67a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2713529 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5f1daa View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2023

  1. add-to-fibanocci

    wajihZouinkhi committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    587eb92 View commit details
    Browse the repository at this point in the history